1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00

Merge pull request #12113 from bnikolic/wcslib

wcslib: init at 4.25
This commit is contained in:
Tobias Geerinckx-Rice 2016-01-21 15:59:08 +01:00
commit 1bd1aea84e
2 changed files with 27 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -8688,6 +8688,8 @@ let
webkit = webkitgtk;
wcslib = callPackage ../development/libraries/wcslib { };
webkitgtk = callPackage ../development/libraries/webkitgtk {
harfbuzz = harfbuzz-icu;
gst-plugins-base = gst_all_1.gst-plugins-base;