1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

stress-ng: 0.06.11 -> 0.06.14, fix i686 build

This commit is contained in:
Franz Pletz 2016-08-25 04:38:18 +02:00
parent 1054399bef
commit 6324e8ef15

View file

@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "stress-ng-${version}";
version = "0.06.11";
version = "0.06.14";
src = fetchurl {
sha256 = "0481aji9hdq8qbslrrc87r2p2pn8jxf913ac8wm5kxj02yqf7ccv";
sha256 = "06kycxfwkdrm2vs9xk8cb6c1mki29ymrrqwwxxqx4icnwvq135hv";
url = "http://kernel.ubuntu.com/~cking/tarballs/stress-ng/${name}.tar.gz";
};
@ -15,7 +15,11 @@ stdenv.mkDerivation rec {
substituteInPlace Makefile --replace "/usr" ""
'';
enableParallelBuilding = true;
# Won't build on i686 because the binary will be linked again in the
# install phase without checking the dependencies. This will prevent
# triggering the rebuild. Why this only happens on i686 remains a
# mystery, though. :-(
enableParallelBuilding = (!stdenv.isi686);
installFlags = [ "DESTDIR=$(out)" ];