forked from mirrors/nixpkgs
37 lines
788 B
Nix
37 lines
788 B
Nix
{ lib, stdenv, fetchurl, libtool
|
|
, cfitsio, curl, ghostscript, gsl, libgit2, libjpeg, libtiff, lzlib, wcslib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gnuastro";
|
|
version = "0.17";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gnuastro/gnuastro-${version}.tar.gz";
|
|
sha256 = "sha256-xBvtM8wkDOqXg/Q2dNfPR0R0ZgRm4QiPJZoLDKivaPU=";
|
|
};
|
|
|
|
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/";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ sikmir ];
|
|
};
|
|
}
|