wcslib: adopt package

This commit is contained in:
Hunter Jones 2021-03-30 23:27:59 -05:00
parent 0eb5186106
commit ac3de55e62

View File

@ -1,8 +1,8 @@
{ fetchurl, lib, stdenv, flex }: { lib, stdenv, fetchurl, flex }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "7.3.1";
pname = "wcslib"; pname = "wcslib";
version = "7.3.1";
buildInputs = [ flex ]; buildInputs = [ flex ];
@ -18,16 +18,16 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
meta = { meta = with lib; {
description = "World Coordinate System Library for Astronomy";
homepage = "https://www.atnf.csiro.au/people/mcalabre/WCS/"; homepage = "https://www.atnf.csiro.au/people/mcalabre/WCS/";
description = "World Coordinate System Library for Astronomy";
longDescription = ''Library for world coordinate systems for longDescription = ''
spherical geometries and their conversion to image coordinate Library for world coordinate systems for spherical geometries
systems. This is the standard library for this purpose in and their conversion to image coordinate systems. This is the
astronomy.''; standard library for this purpose in astronomy.
'';
license = lib.licenses.lgpl3Plus; maintainers = with maintainers; [ hjones2199 ];
platforms = lib.platforms.unix; license = licenses.lgpl3Plus;
platforms = platforms.unix;
}; };
} }