5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{ lib, stdenv, fetchFromGitLab, fetchpatch, pkg-config, meson, ninja, cmake
|
|
, git, criterion, gtk3, libconfig, gnuplot, opencv, json-glib
|
|
, fftwFloat, cfitsio, gsl, exiv2, librtprocess, wcslib, ffmpeg
|
|
, libraw, libtiff, libpng, libjpeg, libheif, ffms, wrapGAppsHook
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "siril";
|
|
version = "1.2.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "free-astro";
|
|
repo = "siril";
|
|
rev = version;
|
|
hash = "sha256-lCoFQ7z6cZbyNPEm5s40DNdvTwFonHK3KCd8RniqQWs=";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch {
|
|
name = "siril-1.2-exiv2-0.28.patch";
|
|
url = "https://gitweb.gentoo.org/repo/gentoo.git/plain/sci-astronomy/siril/files/siril-1.2-exiv2-0.28.patch?id=002882203ad6a2b08ce035a18b95844a9f4b85d0";
|
|
hash = "sha256-R1yslW6hzvJHKo0/IqBxkCuqcX6VrdRSz68gpAExxVE=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja cmake pkg-config git criterion wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3 cfitsio gsl exiv2 gnuplot opencv fftwFloat librtprocess wcslib
|
|
libconfig libraw libtiff libpng libjpeg libheif ffms ffmpeg json-glib
|
|
];
|
|
|
|
# Necessary because project uses default build dir for flatpaks/snaps
|
|
dontUseMesonConfigure = true;
|
|
dontUseCmakeConfigure = true;
|
|
|
|
configureScript = ''
|
|
${meson}/bin/meson --buildtype release nixbld .
|
|
'';
|
|
|
|
postConfigure = ''
|
|
cd nixbld
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.siril.org/";
|
|
description = "Astrophotographic image processing tool";
|
|
license = licenses.gpl3Plus;
|
|
changelog = "https://gitlab.com/free-astro/siril/-/blob/HEAD/ChangeLog";
|
|
maintainers = with maintainers; [ hjones2199 ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|