3
0
Fork 0
forked from mirrors/nixpkgs

wcslib: 5.12 -> 5.13 + enableParallelBuilding

This commit is contained in:
Tobias Geerinckx-Rice 2016-01-27 17:59:23 +01:00
parent 8e6fa2d14f
commit a4fb3c27cc

View file

@ -1,16 +1,18 @@
{ fetchurl, stdenv, flex }:
stdenv.mkDerivation rec {
version = "5.12";
version = "5.13";
name = "wcslib-${version}";
buildInputs = [ flex ];
src = fetchurl {
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2";
sha256 ="1r4dz5514pba2d5cc2ydpnqm85xsvy65hlvzdqayl6sl40liizsh";
sha256 ="1rxlp7p1b84r9fnk7m9p2ivg2cajfj88afyccrg64zlrqn5kx66n";
};
enableParallelBuilding = true;
meta = {
description = "World Coordinate System Library for Astronomy";
homepage = http://www.atnf.csiro.au/people/mcalabre/WCS/;