tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
stress-ng: 0.04.15 -> 0.04.16
Tobias Geerinckx-Rice
10 years ago
9aa595ef
b313fb09
+6
-4
1 changed file
expand all
collapse all
unified
split
pkgs
tools
system
stress-ng
default.nix
+6
-4
pkgs/tools/system/stress-ng/default.nix
···
1
1
{ stdenv, fetchurl, attr, keyutils }:
2
2
3
3
-
let version = "0.04.15"; in
4
4
-
stdenv.mkDerivation rec {
3
3
+
let
4
4
+
version = "0.04.16";
5
5
name = "stress-ng-${version}";
6
6
+
in stdenv.mkDerivation {
7
7
+
inherit name;
6
8
7
9
src = fetchurl {
8
8
-
sha256 = "1jazcfviqx3pyhv2jzsp6y37ndsj1smfk6jacpxg9vrg5k3cm3wq";
10
10
+
sha256 = "0v4zqjh07zc8s4dd1w9iri79dcjfbnv7668rbkmp3pgqzpxdy5wx";
9
11
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
10
12
};
11
13
···
36
38
homepage = http://kernel.ubuntu.com/~cking/stress-ng;
37
39
downloadPage = http://kernel.ubuntu.com/~cking/tarballs/stress-ng/;
38
40
license = licenses.gpl2Plus;
39
39
-
platforms = with platforms; linux;
41
41
+
platforms = platforms.linux;
40
42
maintainers = with maintainers; [ nckx ];
41
43
};
42
44
}