about summary refs log tree commit diff
path: root/pkgs/tools/misc/units/default.nix
blob: 85d3049b27071a6351a7fc4da01ccfc2c0713316 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{stdenv, fetchurl}:
stdenv.mkDerivation {
  name = "units-2.11";

  src = fetchurl {
    url = mirror://gnu/units/units-2.11.tar.gz;
    sha256 = "1gjs3wc212aaiq4r76hx9nl1h3fa39n0ljwl9420d6ixl3rdmdjk";
  };

  meta = {
    description = "Unit conversion tool";
    platforms = stdenv.lib.platforms.linux;
  };
}