083d0890f5
* Remove package name * Start with upper case letter * Remove trailing period Also reword some descriptions and move some long descriptions to longDescription. I'm not touching generated packages.
13 lines
268 B
Nix
13 lines
268 B
Nix
{stdenv, fetchurl}:
|
|
stdenv.mkDerivation {
|
|
name = "units-1.86";
|
|
|
|
src = fetchurl {
|
|
url = mirror://gnu/units/units-1.86.tar.gz;
|
|
sha256 = "1syc4d3x1wb03hcxnz7rkgapk96biazfk2qqn2wfyx54bq829lhi";
|
|
};
|
|
|
|
meta = {
|
|
description = "Unit conversion tool";
|
|
};
|
|
}
|