1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/misc/units/default.nix

15 lines
312 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
2014-04-03 05:45:37 +01:00
name = "units-2.10";
src = fetchurl {
2014-04-03 05:45:37 +01:00
url = mirror://gnu/units/units-2.10.tar.gz;
sha256 = "0fa4bk5aqyis5zisz6l8mqqk76njj6zgx3pbrjp5kvraz1dz78lc";
};
meta = {
description = "Unit conversion tool";
2014-04-03 05:45:37 +01:00
platforms = stdenv.lib.platforms.linux;
};
}