2016-01-03 19:32:06 +00:00
|
|
|
{ fetchurl, stdenv, flex }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-11-08 15:38:17 +00:00
|
|
|
version = "6.2";
|
2016-01-03 19:32:06 +00:00
|
|
|
name = "wcslib-${version}";
|
|
|
|
|
|
|
|
buildInputs = [ flex ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2";
|
2018-11-08 15:38:17 +00:00
|
|
|
sha256 ="01fqckazhbfqqhyr0wd9vcks1m2afmsh83l981alxg2r54jgwkdv";
|
2016-01-03 19:32:06 +00:00
|
|
|
};
|
|
|
|
|
2017-06-28 20:18:23 +01:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace GNUmakefile --replace 2775 0775
|
|
|
|
substituteInPlace C/GNUmakefile --replace 2775 0775
|
|
|
|
'';
|
|
|
|
|
2016-01-27 16:59:23 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-03 19:32:06 +00:00
|
|
|
meta = {
|
|
|
|
description = "World Coordinate System Library for Astronomy";
|
|
|
|
homepage = http://www.atnf.csiro.au/people/mcalabre/WCS/;
|
|
|
|
|
|
|
|
longDescription = ''Library for world coordinate systems for
|
|
|
|
spherical geometries and their conversion to image coordinate
|
|
|
|
systems. This is the standard library for this purpose in
|
|
|
|
astronomy.'';
|
|
|
|
|
|
|
|
license = stdenv.lib.licenses.lgpl3Plus;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-01-03 19:32:06 +00:00
|
|
|
};
|
|
|
|
}
|