Added GNU units - unit conversion tool.

svn path=/nixpkgs/trunk/; revision=8907
This commit is contained in:
Michael Raskin 2007-06-20 15:15:51 +00:00
parent f8db720230
commit 53b7c42a92
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "units-1.86";
src = fetchurl {
url = ftp://ftp.gnu.org/gnu/units/units-1.86.tar.gz;
sha256 = "1syc4d3x1wb03hcxnz7rkgapk96biazfk2qqn2wfyx54bq829lhi";
};
}

View file

@ -551,6 +551,10 @@ rec {
inherit (xlibs) imake;
};
units = import ../tools/misc/units {
inherit fetchurl stdenv;
};
unshield = import ../tools/archivers/unshield {
inherit fetchurl stdenv zlib;
};