summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-21 15:59:08 +0100
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2016-01-21 15:59:08 +0100
commit1bd1aea84ec5b719884604523691471a1a0a92a4 (patch)
tree4b1fcdc798d8c28e5116c6d6b9c7d79f7fa4da34 /pkgs/development
parent194168b7225b341399ccd8948faf2075896033ca (diff)
parent6271300819b7414ca5a07050a27e0e328b46f2f7 (diff)
downloadnixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar.gz
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar.bz2
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar.lz
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar.xz
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.tar.zst
nixpkgs-1bd1aea84ec5b719884604523691471a1a0a92a4.zip
Merge pull request #12113 from bnikolic/wcslib
wcslib: init at 4.25
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/wcslib/default.nix25
1 files changed, 25 insertions, 0 deletions
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;
+  };
+}