aerogramme: add updateScript and NGI team (#422291)

authored by Aleksana and committed by GitHub 8d8a5ef9 52de0826

+4
+4
pkgs/by-name/ae/aerogramme/package.nix
··· 2 lib, 3 rustPlatform, 4 fetchgit, 5 pkg-config, 6 openssl, 7 }: ··· 35 nativeBuildInputs = [ pkg-config ]; 36 buildInputs = [ openssl ]; 37 38 meta = { 39 description = "Encrypted e-mail storage over Garage"; 40 homepage = "https://aerogramme.deuxfleurs.fr/"; 41 license = lib.licenses.eupl12; 42 maintainers = with lib.maintainers; [ supinie ]; 43 mainProgram = "aerogramme"; 44 platforms = lib.platforms.linux; 45 };
··· 2 lib, 3 rustPlatform, 4 fetchgit, 5 + nix-update-script, 6 pkg-config, 7 openssl, 8 }: ··· 36 nativeBuildInputs = [ pkg-config ]; 37 buildInputs = [ openssl ]; 38 39 + passthru.updateScript = nix-update-script { }; 40 + 41 meta = { 42 description = "Encrypted e-mail storage over Garage"; 43 homepage = "https://aerogramme.deuxfleurs.fr/"; 44 license = lib.licenses.eupl12; 45 maintainers = with lib.maintainers; [ supinie ]; 46 + teams = with lib.teams; [ ngi ]; 47 mainProgram = "aerogramme"; 48 platforms = lib.platforms.linux; 49 };