From 6271300819b7414ca5a07050a27e0e328b46f2f7 Mon Sep 17 00:00:00 2001 From: Bojan Nikolic Date: Sun, 3 Jan 2016 19:32:06 +0000 Subject: wcslib: init at 5.12 --- pkgs/development/libraries/wcslib/default.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/development/libraries/wcslib/default.nix (limited to 'pkgs/development/libraries/wcslib/default.nix') diff --git a/pkgs/development/libraries/wcslib/default.nix b/pkgs/development/libraries/wcslib/default.nix new file mode 100644 index 00000000000..ba2d1ab11fc --- /dev/null +++ b/pkgs/development/libraries/wcslib/default.nix @@ -0,0 +1,25 @@ +{ fetchurl, stdenv, flex }: + +stdenv.mkDerivation rec { + version = "5.12"; + name = "wcslib-${version}"; + + buildInputs = [ flex ]; + + src = fetchurl { + url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2"; + sha256 ="1r4dz5514pba2d5cc2ydpnqm85xsvy65hlvzdqayl6sl40liizsh"; + }; + + 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; + }; +} -- cgit 1.4.1