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

29 lines
782 B
Nix
Raw Normal View History

2016-01-03 19:32:06 +00:00
{ fetchurl, stdenv, flex }:
stdenv.mkDerivation rec {
2016-04-06 14:12:36 +00:00
version = "5.15";
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";
2016-04-06 14:12:36 +00:00
sha256 ="1s2nig327g4bimd9xshlk11ww09a7mrjmsbpdcd8smsmn2kl1glb";
2016-01-03 19:32:06 +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;
platforms = stdenv.lib.platforms.unix;
2016-01-03 19:32:06 +00:00
};
}