siril: 1.2.4 -> 1.2.6

authored by liberodark and committed by Bjørn Forsman fb6a0e29 5680bc1e

+21 -9
+21 -9
pkgs/by-name/si/siril/package.nix
··· 28 ffms, 29 wrapGAppsHook3, 30 curl, 31 }: 32 33 - stdenv.mkDerivation rec { 34 pname = "siril"; 35 - version = "1.2.4"; 36 37 src = fetchFromGitLab { 38 owner = "free-astro"; 39 repo = "siril"; 40 - rev = version; 41 - hash = "sha256-orNu9qo7sutMUPeIPPhxKETEKbCm4D6nAuo4Hc/8Bdo="; 42 }; 43 44 nativeBuildInputs = [ ··· 86 cd nixbld 87 ''; 88 89 - meta = with lib; { 90 homepage = "https://www.siril.org/"; 91 description = "Astrophotographic image processing tool"; 92 - license = licenses.gpl3Plus; 93 changelog = "https://gitlab.com/free-astro/siril/-/blob/HEAD/ChangeLog"; 94 - maintainers = with maintainers; [ hjones2199 ]; 95 - platforms = platforms.linux; 96 }; 97 - }
··· 28 ffms, 29 wrapGAppsHook3, 30 curl, 31 + versionCheckHook, 32 + nix-update-script, 33 }: 34 35 + stdenv.mkDerivation (finalAttrs: { 36 pname = "siril"; 37 + version = "1.2.6"; 38 39 src = fetchFromGitLab { 40 owner = "free-astro"; 41 repo = "siril"; 42 + tag = "${finalAttrs.version}"; 43 + hash = "sha256-pSJp4Oj8x4pKuwPSaSyGbyGfpnanoWBxAdXtzGTP7uA="; 44 }; 45 46 nativeBuildInputs = [ ··· 88 cd nixbld 89 ''; 90 91 + nativeInstallCheckInputs = [ 92 + versionCheckHook 93 + ]; 94 + versionCheckProgramArg = [ "--version" ]; 95 + doInstallCheck = true; 96 + 97 + passthru = { 98 + updateScript = nix-update-script { }; 99 + }; 100 + 101 + meta = { 102 homepage = "https://www.siril.org/"; 103 description = "Astrophotographic image processing tool"; 104 + license = lib.licenses.gpl3Plus; 105 changelog = "https://gitlab.com/free-astro/siril/-/blob/HEAD/ChangeLog"; 106 + maintainers = with lib.maintainers; [ hjones2199 ]; 107 + platforms = lib.platforms.linux; 108 }; 109 + })