nixpkgs/pkgs/development/libraries/wcslib/default.nix
R. RyanTM 1b563cc104 wcslib: 5.18 -> 5.19.1 (#44668)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wcslib/versions.
2018-08-08 15:29:09 +02:00

34 lines
917 B
Nix

{ fetchurl, stdenv, flex }:
stdenv.mkDerivation rec {
version = "5.19.1";
name = "wcslib-${version}";
buildInputs = [ flex ];
src = fetchurl {
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2";
sha256 ="160gvz9xk4hvliwb75ry770qdf899kc89ij6r0y7fh60lbjz1far";
};
prePatch = ''
substituteInPlace GNUmakefile --replace 2775 0775
substituteInPlace C/GNUmakefile --replace 2775 0775
'';
enableParallelBuilding = true;
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;
};
}