3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/udunits/default.nix

23 lines
680 B
Nix
Raw Normal View History

{ stdenv, fetchurl,
bison, flex, expat, file
}:
stdenv.mkDerivation rec {
2017-01-21 22:13:33 +00:00
name = "udunits-2.2.23";
src = fetchurl {
url = "ftp://ftp.unidata.ucar.edu/pub/udunits/${name}.tar.gz";
2017-01-21 22:13:33 +00:00
sha256 = "0ya93jrv8qzfkdj77grl4dpyb0ap4jccmqx3rkkgaggnklhjfwkr";
};
2017-01-16 19:37:44 +00:00
nativeBuildInputs = [ bison flex file ];
buildInputs = [ expat ];
2016-03-19 11:08:58 +00:00
meta = with stdenv.lib; {
homepage = http://www.unidata.ucar.edu/software/udunits/;
description = "A C-based package for the programatic handling of units of physical quantities";
license = licenses.bsdOriginal;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}