tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
units: 2.12 -> 2.13
Rahul Gopinath
9 years ago
0dbbe57d
21f9180d
+4
-3
1 changed file
expand all
collapse all
unified
split
pkgs
tools
misc
units
default.nix
+4
-3
pkgs/tools/misc/units/default.nix
···
2
3
stdenv.mkDerivation rec {
4
name = "units-${version}";
5
-
version = "2.12";
6
7
src = fetchurl {
8
url = "mirror://gnu/units/${name}.tar.gz";
9
-
sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q";
10
};
11
12
buildInputs = [ readline ];
···
17
description = "Unit conversion tool";
18
homepage = https://www.gnu.org/software/units/;
19
license = [ licenses.gpl3Plus ];
20
-
platforms = stdenv.lib.platforms.all;
0
21
};
22
}
···
2
3
stdenv.mkDerivation rec {
4
name = "units-${version}";
5
+
version = "2.13";
6
7
src = fetchurl {
8
url = "mirror://gnu/units/${name}.tar.gz";
9
+
sha256 = "1awhjw9zjlfb8s5g3yyx63f7ddfcr1sanlbxpqifmrgq24ql198b";
10
};
11
12
buildInputs = [ readline ];
···
17
description = "Unit conversion tool";
18
homepage = https://www.gnu.org/software/units/;
19
license = [ licenses.gpl3Plus ];
20
+
platforms = platforms.all;
21
+
maintainers = [ maintainers.vrthra ];
22
};
23
}