1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00
nixpkgs/pkgs/tools/misc/bandwidth/default.nix

38 lines
905 B
Nix
Raw Normal View History

2015-04-23 22:45:34 +01:00
{ stdenv, fetchurl, nasm }:
let
inherit (stdenv.hostPlatform.parsed.cpu) bits;
arch = "bandwidth${toString bits}";
2015-04-23 22:45:34 +01:00
in
stdenv.mkDerivation rec {
pname = "bandwidth";
2020-10-21 21:26:29 +01:00
version = "1.9.4";
2015-04-23 22:45:34 +01:00
src = fetchurl {
url = "https://zsmith.co/archives/${pname}-${version}.tar.gz";
2020-10-21 21:26:29 +01:00
sha256 = "0x798xj3vhiwq2hal0vmf92sq4h7yalp3i6ylqwhnnpv99m2zws4";
2015-04-23 22:45:34 +01:00
};
postPatch = ''
sed -i 's,^CC=gcc .*,,' OOC/Makefile Makefile*
sed -i 's,ar ,$(AR) ,g' OOC/Makefile
'';
nativeBuildInputs = [ nasm ];
2015-04-23 22:45:34 +01:00
buildFlags = [ arch ];
2015-04-23 22:45:34 +01:00
installPhase = ''
mkdir -p $out/bin
cp ${arch} $out/bin/bandwidth
2015-04-23 22:45:34 +01:00
'';
meta = with stdenv.lib; {
homepage = "https://zsmith.co/bandwidth.html";
2016-04-02 01:16:31 +01:00
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
license = licenses.gpl2Plus;
platforms = platforms.x86;
maintainers = with maintainers; [ r-burns ];
2015-04-23 22:45:34 +01:00
};
}