2009-10-19 13:50:37 +01:00
|
|
|
{ fetchurl, stdenv }:
|
|
|
|
|
2017-03-17 21:44:16 +00:00
|
|
|
stdenv.mkDerivation {
|
2018-03-14 08:26:40 +00:00
|
|
|
name = "cfitsio-3.430";
|
2009-10-19 13:50:37 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-03-04 23:48:00 +00:00
|
|
|
url = "ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/cfitsio3430.tar.gz";
|
2018-03-14 08:26:40 +00:00
|
|
|
sha256 = "07fghxh5fl8nqk3q0dh8rvc83npnm0hisxzcj16a6r7gj5pmp40l";
|
2009-10-19 13:50:37 +01:00
|
|
|
};
|
|
|
|
|
2018-05-31 10:55:10 +01:00
|
|
|
patches = [ ./darwin-curl-config.patch ./darwin-rpath-universal.patch ];
|
2018-05-30 13:31:07 +01:00
|
|
|
|
2009-10-19 13:50:37 +01:00
|
|
|
# Shared-only build
|
|
|
|
buildFlags = "shared";
|
2018-05-30 13:31:07 +01:00
|
|
|
postPatch = '' sed -e '/^install:/s/libcfitsio.a //' -e 's@/bin/@@g' -i Makefile.in
|
2009-10-19 13:50:37 +01:00
|
|
|
'';
|
|
|
|
|
2017-03-17 21:44:16 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://heasarc.gsfc.nasa.gov/fitsio/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Library for reading and writing FITS data files";
|
2009-10-19 13:50:37 +01:00
|
|
|
longDescription =
|
|
|
|
'' CFITSIO is a library of C and Fortran subroutines for reading and
|
|
|
|
writing data files in FITS (Flexible Image Transport System) data
|
|
|
|
format. CFITSIO provides simple high-level routines for reading and
|
|
|
|
writing FITS files that insulate the programmer from the internal
|
|
|
|
complexities of the FITS format. CFITSIO also provides many
|
|
|
|
advanced features for manipulating and filtering the information in
|
|
|
|
FITS files.
|
|
|
|
'';
|
|
|
|
# Permissive BSD-style license.
|
|
|
|
license = "permissive";
|
2018-05-30 13:31:07 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2009-10-19 13:50:37 +01:00
|
|
|
};
|
2008-01-28 19:46:59 +00:00
|
|
|
}
|