Skip to content

Commit

Permalink
siril: 1.2.4 -> 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
liberodark authored and bjornfor committed Jan 30, 2025
1 parent 5680bc1 commit fb6a0e2
Showing 1 changed file with 21 additions and 9 deletions.
30 changes: 21 additions & 9 deletions pkgs/by-name/si/siril/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,19 @@
ffms,
wrapGAppsHook3,
curl,
versionCheckHook,
nix-update-script,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "siril";
version = "1.2.4";
version = "1.2.6";

src = fetchFromGitLab {
owner = "free-astro";
repo = "siril";
rev = version;
hash = "sha256-orNu9qo7sutMUPeIPPhxKETEKbCm4D6nAuo4Hc/8Bdo=";
tag = "${finalAttrs.version}";
hash = "sha256-pSJp4Oj8x4pKuwPSaSyGbyGfpnanoWBxAdXtzGTP7uA=";
};

nativeBuildInputs = [
Expand Down Expand Up @@ -86,12 +88,22 @@ stdenv.mkDerivation rec {
cd nixbld
'';

meta = with lib; {
nativeInstallCheckInputs = [
versionCheckHook
];
versionCheckProgramArg = [ "--version" ];
doInstallCheck = true;

passthru = {
updateScript = nix-update-script { };
};

meta = {
homepage = "https://www.siril.org/";
description = "Astrophotographic image processing tool";
license = licenses.gpl3Plus;
license = lib.licenses.gpl3Plus;
changelog = "https://gitlab.com/free-astro/siril/-/blob/HEAD/ChangeLog";
maintainers = with maintainers; [ hjones2199 ];
platforms = platforms.linux;
maintainers = with lib.maintainers; [ hjones2199 ];
platforms = lib.platforms.linux;
};
}
})

0 comments on commit fb6a0e2

Please sign in to comment.