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
2
3
3
stdenv.mkDerivation rec {
4
4
name = "units-${version}";
5
5
-
version = "2.12";
5
5
+
version = "2.13";
6
6
7
7
src = fetchurl {
8
8
url = "mirror://gnu/units/${name}.tar.gz";
9
9
-
sha256 = "1jxvjknz2jhq773jrwx9gc1df3gfy73yqmkjkygqxzpi318yls3q";
9
9
+
sha256 = "1awhjw9zjlfb8s5g3yyx63f7ddfcr1sanlbxpqifmrgq24ql198b";
10
10
};
11
11
12
12
buildInputs = [ readline ];
···
17
17
description = "Unit conversion tool";
18
18
homepage = https://www.gnu.org/software/units/;
19
19
license = [ licenses.gpl3Plus ];
20
20
-
platforms = stdenv.lib.platforms.all;
20
20
+
platforms = platforms.all;
21
21
+
maintainers = [ maintainers.vrthra ];
21
22
};
22
23
}