lol

Merge pull request #165368 from sikmir/gnuastro

gnuastro: init at 0.17

authored by

markuskowa and committed by
GitHub
3095b436 7aa37733

+38
+36
pkgs/applications/science/astronomy/gnuastro/default.nix
··· 1 + { lib, stdenv, fetchurl, libtool 2 + , cfitsio, curl, ghostscript, gsl, libgit2, libjpeg, libtiff, lzlib, wcslib }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "gnuastro"; 6 + version = "0.17"; 7 + 8 + src = fetchurl { 9 + url = "mirror://gnu/gnuastro/gnuastro-${version}.tar.gz"; 10 + sha256 = "sha256-xBvtM8wkDOqXg/Q2dNfPR0R0ZgRm4QiPJZoLDKivaPU="; 11 + }; 12 + 13 + nativeBuildInputs = [ libtool ]; 14 + 15 + buildInputs = [ 16 + cfitsio 17 + curl 18 + ghostscript 19 + gsl 20 + libgit2 21 + libjpeg 22 + libtiff 23 + lzlib 24 + wcslib 25 + ]; 26 + 27 + enableParallelBuilding = true; 28 + 29 + meta = with lib; { 30 + description = "GNU astronomy utilities and library"; 31 + homepage = "https://www.gnu.org/software/gnuastro/"; 32 + license = licenses.gpl3Plus; 33 + platforms = platforms.unix; 34 + maintainers = with maintainers; [ sikmir ]; 35 + }; 36 + }
+2
pkgs/top-level/all-packages.nix
··· 6266 6266 6267 6267 gpp = callPackage ../development/tools/gpp { }; 6268 6268 6269 + gnuastro = callPackage ../applications/science/astronomy/gnuastro { }; 6270 + 6269 6271 gpredict = callPackage ../applications/science/astronomy/gpredict { 6270 6272 hamlib = hamlib_4; 6271 6273 };