lol

lauti: rename from eintopf and update to 1.0.0

+22 -16
+10 -6
pkgs/by-name/ei/eintopf/frontend.nix pkgs/by-name/la/lauti/frontend.nix
··· 4 4 src, 5 5 version, 6 6 nodejs, 7 - eintopf, 7 + lauti, 8 8 yarnConfigHook, 9 9 yarnBuildHook, 10 10 }: 11 11 12 12 stdenv.mkDerivation (finalAttrs: { 13 - pname = "eintopf"; 13 + pname = "lauti"; 14 14 inherit version src; 15 15 16 - sourceRoot = "${finalAttrs.src.name}/backstage"; 16 + sourceRoot = "${finalAttrs.src.name}/"; 17 17 18 18 offlineCache = fetchYarnDeps { 19 - yarnLock = "${finalAttrs.src}/backstage/yarn.lock"; 20 - hash = "sha256-3TPBrQxvTfmBfhAavHy8eDcZwRZMwu0dCovnE1fcuTE="; 19 + yarnLock = "${finalAttrs.src}/yarn.lock"; 20 + hash = "sha256-uIDBE4ewdzrtJqOjFQTAei1TpAjQMRqls7CtG1h8KnA="; 21 21 }; 22 22 23 23 nativeBuildInputs = [ ··· 27 27 nodejs 28 28 ]; 29 29 30 + preBuild = '' 31 + cd backstage 32 + ''; 33 + 30 34 installPhase = '' 31 35 runHook preInstall 32 36 ··· 39 43 ''; 40 44 41 45 meta = { 42 - inherit (eintopf.meta) 46 + inherit (lauti.meta) 43 47 homepage 44 48 description 45 49 license
+11 -10
pkgs/by-name/ei/eintopf/package.nix pkgs/by-name/la/lauti/package.nix
··· 7 7 }: 8 8 9 9 let 10 - version = "0.14.3"; 10 + version = "1.0.0"; 11 11 src = fetchFromGitea { 12 12 domain = "codeberg.org"; 13 13 owner = "Klasse-Methode"; 14 - repo = "eintopf"; 15 - rev = "v${version}"; 16 - hash = "sha256-cWHWRxZFoArBB5PiuY6EQubKJKm3/79fwNhnABOtBrM="; 14 + repo = "lauti"; 15 + tag = "v${version}"; 16 + hash = "sha256-cO9rK7GAVRlv5x4WI/xbXNJ594QqB+KIPUteB3TifKM="; 17 17 }; 18 18 frontend = callPackage ./frontend.nix { inherit src version; }; 19 19 in 20 20 21 21 buildGoModule rec { 22 - pname = "eintopf"; 22 + pname = "lauti"; 23 23 inherit version src; 24 24 25 - vendorHash = "sha256-ysAgyaewREI8TaMnKH+kh33QT6AN1eLhog35lv7CbVU="; 25 + vendorHash = "sha256-ushTvIpvRLZP3q6tLN6BA4tl2Xp/UImWugm2ZgTAm8k="; 26 26 27 27 ldflags = [ 28 28 "-s" ··· 37 37 38 38 preCheck = '' 39 39 # Disable test, requires running Docker daemon 40 - rm cmd/eintopf/main_test.go 40 + rm cmd/lauti/main_test.go 41 41 rm service/email/email_test.go 42 42 ''; 43 43 44 44 passthru.tests = { 45 - inherit (nixosTests) eintopf; 45 + inherit (nixosTests) lauti; 46 46 }; 47 47 48 48 meta = { 49 - description = "A calendar for Stuttgart, showing events, groups and places"; 50 - homepage = "https://codeberg.org/Klasse-Methode/eintopf"; 49 + description = "An open source calendar for events, groups and places"; 50 + homepage = "https://lauti.org"; 51 51 license = lib.licenses.agpl3Only; 52 52 maintainers = with lib.maintainers; [ onny ]; 53 53 platforms = lib.platforms.unix; 54 + mainProgram = "lauti"; 54 55 }; 55 56 }
+1
pkgs/top-level/aliases.nix
··· 550 550 ecryptfs-helper = throw "'ecryptfs-helper' has been removed, for filesystem-level encryption, use fscrypt"; # Added 2025-04-08 551 551 edUnstable = throw "edUnstable was removed; use ed instead"; # Added 2024-07-01 552 552 edgedb = throw "edgedb replaced to gel because of change of upstream"; # Added 2025-02-24 553 + eintopf = lauti; # Project was renamed, added 2025-05-01 553 554 elasticsearch7Plugins = elasticsearchPlugins; 554 555 electronplayer = throw "'electronplayer' has been removed as it had been discontinued upstream since October 2024"; # Added 2024-12-17 555 556