nixpkgs/pkgs/by-name/gn/gnuastro/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
887 B
Nix
Raw Normal View History

2022-03-23 04:37:18 +00:00
{ lib, stdenv, fetchurl, libtool
, cfitsio, curl, ghostscript, gsl, libgit2, libjpeg, libtiff, lzlib, wcslib }:
stdenv.mkDerivation rec {
pname = "gnuastro";
2024-07-17 00:46:54 +00:00
version = "0.23";
2022-03-23 04:37:18 +00:00
src = fetchurl {
url = "mirror://gnu/gnuastro/gnuastro-${version}.tar.gz";
hash = "sha256-+X53X/tZgcY/it++lY/Ov5FHwT8OfpZAfd398zs/dwI=";
2022-03-23 04:37:18 +00:00
};
nativeBuildInputs = [ libtool ];
buildInputs = [
cfitsio
curl
ghostscript
gsl
libgit2
libjpeg
libtiff
lzlib
wcslib
];
enableParallelBuilding = true;
meta = with lib; {
description = "GNU astronomy utilities and library";
homepage = "https://www.gnu.org/software/gnuastro/";
2024-02-05 14:44:12 +00:00
changelog = "https://git.savannah.gnu.org/cgit/gnuastro.git/plain/NEWS?id=gnuastro_v${version}";
2022-03-23 04:37:18 +00:00
license = licenses.gpl3Plus;
platforms = platforms.unix;
maintainers = with maintainers; [ sikmir ];
};
}