3
0
Fork 0
forked from mirrors/nixpkgs

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