2016-01-03 11:32:06 -08:00
|
|
|
{ fetchurl, stdenv, flex }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-20 22:22:43 -07:00
|
|
|
version = "6.4";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "wcslib";
|
2016-01-03 11:32:06 -08:00
|
|
|
|
|
|
|
buildInputs = [ flex ];
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${pname}-${version}.tar.bz2";
|
2019-08-20 22:22:43 -07:00
|
|
|
sha256 ="003h23m6d5wcs29v2vbnl63f3z35k5x70lpsqlz5c9bp1bvizh8k";
|
2016-01-03 11:32:06 -08:00
|
|
|
};
|
|
|
|
|
2017-06-28 12:18:23 -07:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace GNUmakefile --replace 2775 0775
|
|
|
|
substituteInPlace C/GNUmakefile --replace 2775 0775
|
|
|
|
'';
|
|
|
|
|
2016-01-27 08:59:23 -08:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-01-03 11:32:06 -08:00
|
|
|
meta = {
|
|
|
|
description = "World Coordinate System Library for Astronomy";
|
2020-01-22 02:26:22 -08:00
|
|
|
homepage = https://www.atnf.csiro.au/people/mcalabre/WCS/;
|
2016-01-03 11:32:06 -08:00
|
|
|
|
|
|
|
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 10:50:55 -07:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-01-03 11:32:06 -08:00
|
|
|
};
|
|
|
|
}
|