siril: init at 0.99.6
This commit is contained in:
parent
0d1a3caeb6
commit
69741a7a48
45
pkgs/applications/science/astronomy/siril/default.nix
Normal file
45
pkgs/applications/science/astronomy/siril/default.nix
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{ stdenv, fetchFromGitLab, fetchFromGitHub, pkg-config, meson, ninja,
|
||||||
|
git, criterion, wrapGAppsHook, gtk3, libconfig, gnuplot, opencv,
|
||||||
|
fftwFloat, cfitsio, gsl, exiv2, curl, librtprocess, ffmpeg,
|
||||||
|
libraw, libtiff, libpng, libjpeg, libheif, ffms
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "siril";
|
||||||
|
version = "0.99.6";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "free-astro";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
sha256 = "06vh8x45gv0gwlnqjwxglf12jmpdaxkiv5sixkqh20420wabx3ha";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson ninja pkg-config git criterion wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gtk3 cfitsio gsl exiv2 gnuplot curl opencv fftwFloat librtprocess
|
||||||
|
libconfig libraw libtiff libpng libjpeg libheif ffms ffmpeg
|
||||||
|
];
|
||||||
|
|
||||||
|
# Necessary because project uses default build dir for flatpaks/snaps
|
||||||
|
dontUseMesonConfigure = true;
|
||||||
|
|
||||||
|
configureScript = ''
|
||||||
|
${meson}/bin/meson --buildtype release nixbld .
|
||||||
|
'';
|
||||||
|
|
||||||
|
postConfigure = ''
|
||||||
|
cd nixbld
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://www.siril.org/";
|
||||||
|
description = "Astronomical image processing tool";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
maintainers = with maintainers; [ hjones2199 ];
|
||||||
|
platforms = [ "x86_64-linux" ];
|
||||||
|
};
|
||||||
|
}
|
@ -7269,6 +7269,8 @@ in
|
|||||||
|
|
||||||
sipsak = callPackage ../tools/networking/sipsak { };
|
sipsak = callPackage ../tools/networking/sipsak { };
|
||||||
|
|
||||||
|
siril = callPackage ../applications/science/astronomy/siril { };
|
||||||
|
|
||||||
sisco.lv2 = callPackage ../applications/audio/sisco.lv2 { };
|
sisco.lv2 = callPackage ../applications/audio/sisco.lv2 { };
|
||||||
|
|
||||||
sit = callPackage ../applications/version-management/sit {
|
sit = callPackage ../applications/version-management/sit {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user