nixpkgs/pkgs/tools/misc/bandwidth/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

2015-04-23 21:45:34 +00:00
{ stdenv, fetchurl, nasm }:
let
arch =
if stdenv.system == "x86_64-linux" then "bandwidth64"
else if stdenv.system == "i686-linux" then "bandwidth32"
else if stdenv.system == "x86_64-darwin" then "bandwidth-mac64"
else if stdenv.system == "i686-darwin" then "bandwidth-mac32"
else if stdenv.system == "i686-cygwin" then "bandwidth-win32"
else null;
in
stdenv.mkDerivation rec {
2016-04-02 00:16:31 +00:00
name = "bandwidth-${version}";
2016-07-06 16:49:49 +00:00
version = "1.3.1";
2015-04-23 21:45:34 +00:00
src = fetchurl {
2017-01-26 01:37:01 +00:00
url = "http://zsmith.co/archives/${name}.tar.gz";
2016-07-06 16:49:49 +00:00
sha256 = "13a0mxrkybpwiynv4cj8wsy8zl5xir5xi1a03fzam5gw815dj4am";
2015-04-23 21:45:34 +00:00
};
buildInputs = [ nasm ];
2015-05-14 22:08:43 +00:00
buildFlags = [ arch ]
++ stdenv.lib.optionals stdenv.cc.isClang [ "CC=clang" "LD=clang" ];
2015-04-23 21:45:34 +00:00
installPhase = ''
mkdir -p $out/bin
cp ${arch} $out/bin
ln -s ${arch} $out/bin/bandwidth
'';
meta = with stdenv.lib; {
homepage = https://zsmith.co/bandwidth.html;
2016-04-02 00:16:31 +00:00
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
2015-04-23 21:45:34 +00:00
license = licenses.mit;
platforms = platforms.unix;
2016-04-02 00:16:31 +00:00
maintainers = with maintainers; [ nckx wkennington ];
2015-04-23 21:45:34 +00:00
};
}