nixpkgs/pkgs/development/libraries/wcslib/default.nix

34 lines
921 B
Nix
Raw Normal View History

2016-01-03 19:32:06 +00:00
{ fetchurl, stdenv, flex }:
stdenv.mkDerivation rec {
2020-08-31 06:22:06 +00:00
version = "7.3.1";
pname = "wcslib";
2016-01-03 19:32:06 +00:00
buildInputs = [ flex ];
src = fetchurl {
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${pname}-${version}.tar.bz2";
2020-08-31 06:22:06 +00:00
sha256 ="0p0bp3jll9v2094a8908vk82m7j7qkjqzkngm1r9qj1v6l6j5z6c";
2016-01-03 19:32:06 +00:00
};
prePatch = ''
substituteInPlace GNUmakefile --replace 2775 0775
substituteInPlace C/GNUmakefile --replace 2775 0775
'';
enableParallelBuilding = true;
2016-01-03 19:32:06 +00:00
meta = {
description = "World Coordinate System Library for Astronomy";
2020-03-12 11:50:22 +00:00
homepage = "https://www.atnf.csiro.au/people/mcalabre/WCS/";
2016-01-03 19:32:06 +00: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;
platforms = stdenv.lib.platforms.unix;
2016-01-03 19:32:06 +00:00
};
}