cfitsio added
svn path=/nixpkgs/trunk/; revision=10350
This commit is contained in:
parent
a388688509
commit
c079c14928
13
pkgs/development/libraries/cfitsio/default.nix
Normal file
13
pkgs/development/libraries/cfitsio/default.nix
Normal file
@ -0,0 +1,13 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "cfitsio-3.060";
|
||||
src = fetchurl {
|
||||
url = ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3060.tar.gz;
|
||||
sha256 = "0ijbjpl5v35m538sa3c82qgja697kddjbj7yxx64ka7pdsdnfx9l";
|
||||
};
|
||||
# Shared-only build
|
||||
buildFlags = "shared";
|
||||
patchPhase = ''
|
||||
sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in
|
||||
'';
|
||||
}
|
@ -1877,6 +1877,10 @@ rec {
|
||||
flags = [ "useNixLibs" "threads" "shared" "gl" ];
|
||||
};
|
||||
|
||||
cfitsio = import ../development/libraries/cfitsio {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
fontconfig = import ../development/libraries/fontconfig {
|
||||
inherit fetchurl stdenv freetype expat;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user