iozone: enable aarch64-linux build

add myself to list of maintainers
This commit is contained in:
makefu 2017-10-02 10:00:20 +02:00
parent 61adee9e55
commit 46b71a1637
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225

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 ];
}; };
} }