Merge pull request #61242 from xbreak/update/cfitsio-3450
cfitsio: 3.430 -> 3.450
This commit is contained in:
commit
2c86b2c79c
@ -5401,6 +5401,11 @@
|
|||||||
github = "xaverdh";
|
github = "xaverdh";
|
||||||
name = "Dominik Xaver Hörl";
|
name = "Dominik Xaver Hörl";
|
||||||
};
|
};
|
||||||
|
xbreak = {
|
||||||
|
email = "xbreak@alphaware.se";
|
||||||
|
github = "xbreak";
|
||||||
|
name = "Calle Rosenquist";
|
||||||
|
};
|
||||||
xeji = {
|
xeji = {
|
||||||
email = "xeji@cat3.de";
|
email = "xeji@cat3.de";
|
||||||
github = "xeji";
|
github = "xeji";
|
||||||
|
@ -1,15 +1,23 @@
|
|||||||
{ fetchurl, stdenv }:
|
{ fetchurl, stdenv
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
# Optional dependencies
|
||||||
name = "cfitsio-3.430";
|
, bzip2 ? null }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "cfitsio-${version}";
|
||||||
|
version = "3.450";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3430.tar.gz";
|
url = "https://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio${builtins.replaceStrings ["."] [""] version}.tar.gz";
|
||||||
sha256 = "07fghxh5fl8nqk3q0dh8rvc83npnm0hisxzcj16a6r7gj5pmp40l";
|
sha256 = "0bmrkw6w65zb0k3mszaaqy1f4zjm2hl7njww74nb5v38wvdi4q5z";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
buildInputs = [ bzip2 ];
|
||||||
|
|
||||||
patches = [ ./darwin-curl-config.patch ./darwin-rpath-universal.patch ];
|
patches = [ ./darwin-curl-config.patch ./darwin-rpath-universal.patch ];
|
||||||
|
|
||||||
|
configureFlags = stdenv.lib.optional (bzip2 != null) "--with-bzip2=${bzip2.out}";
|
||||||
|
|
||||||
# Shared-only build
|
# Shared-only build
|
||||||
buildFlags = "shared";
|
buildFlags = "shared";
|
||||||
postPatch = '' sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in
|
postPatch = '' sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in
|
||||||
@ -27,8 +35,8 @@
|
|||||||
advanced features for manipulating and filtering the information in
|
advanced features for manipulating and filtering the information in
|
||||||
FITS files.
|
FITS files.
|
||||||
'';
|
'';
|
||||||
# Permissive BSD-style license.
|
license = licenses.mit;
|
||||||
license = "permissive";
|
maintainers = [ maintainers.xbreak ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = with platforms; linux ++ darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user