mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 11:00:19 +03:00
133310eeec
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 5.18 with grep in /nix/store/pr88acrgc8w11q3p8407w7v0kwd2asq8-wcslib-5.18 - found 5.18 in filename of file in /nix/store/pr88acrgc8w11q3p8407w7v0kwd2asq8-wcslib-5.18
34 lines
915 B
Nix
34 lines
915 B
Nix
{ fetchurl, stdenv, flex }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "5.18";
|
|
name = "wcslib-${version}";
|
|
|
|
buildInputs = [ flex ];
|
|
|
|
src = fetchurl {
|
|
url = "ftp://ftp.atnf.csiro.au/pub/software/wcslib/${name}.tar.bz2";
|
|
sha256 ="16jh568k99c9p0y3qzcgps2rii933x9wlay7q1xm0lr59zqzp4xn";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|