Merge pull request #30016 from makefu/pkgs/iozone/aarch64

iozone: enable aarch64-linux build
This commit is contained in:
Orivej Desh 2017-10-02 08:12:46 +00:00 committed by GitHub
commit 9252cf08e9

View File

@ -7,6 +7,8 @@ let
"linux-AMD64" "linux-AMD64"
else if stdenv.system == "x86_64-darwin" then else if stdenv.system == "x86_64-darwin" then
"macosx" "macosx"
else if stdenv.system == "aarch64-linux" then
"linux-arm"
else abort "Platform ${stdenv.system} not yet supported."; else abort "Platform ${stdenv.system} not yet supported.";
in in
@ -53,7 +55,7 @@ stdenv.mkDerivation rec {
description = "IOzone Filesystem Benchmark"; description = "IOzone Filesystem Benchmark";
homepage = http://www.iozone.org/; homepage = http://www.iozone.org/;
license = stdenv.lib.licenses.unfreeRedistributable; license = stdenv.lib.licenses.unfreeRedistributable;
platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin"]; platforms = ["i686-linux" "x86_64-linux" "x86_64-darwin" "aarch64-linux" ];
maintainers = [ stdenv.lib.maintainers.Baughn ]; maintainers = with stdenv.lib.maintainers; [ Baughn makefu ];
}; };
} }