41 lines
1.2 KiB
Nix
41 lines
1.2 KiB
Nix
{ 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 {
|
|
name = "bandwidth-${version}";
|
|
version = "1.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://mutineer.org/file.php?id=284ebee21bde256fd0daeae91242c2b73d9cf1df&p=bandwidth";
|
|
name = "${name}.tar.gz";
|
|
sha256 = "13a0mxrkybpwiynv4cj8wsy8zl5xir5xi1a03fzam5gw815dj4am";
|
|
};
|
|
|
|
buildInputs = [ nasm ];
|
|
|
|
buildFlags = [ arch ]
|
|
++ stdenv.lib.optionals stdenv.cc.isClang [ "CC=clang" "LD=clang" ];
|
|
|
|
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;
|
|
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
|
|
license = licenses.mit;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ nckx wkennington ];
|
|
};
|
|
}
|