4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
38 lines
903 B
Nix
38 lines
903 B
Nix
{ lib, stdenv, fetchurl, nasm }:
|
|
|
|
let
|
|
inherit (stdenv.hostPlatform.parsed.cpu) bits;
|
|
arch = "bandwidth${toString bits}";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "bandwidth";
|
|
version = "1.9.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://zsmith.co/archives/${pname}-${version}.tar.gz";
|
|
sha256 = "0x798xj3vhiwq2hal0vmf92sq4h7yalp3i6ylqwhnnpv99m2zws4";
|
|
};
|
|
|
|
postPatch = ''
|
|
sed -i 's,^CC=gcc .*,,' OOC/Makefile Makefile*
|
|
sed -i 's,ar ,$(AR) ,g' OOC/Makefile
|
|
'';
|
|
|
|
nativeBuildInputs = [ nasm ];
|
|
|
|
buildFlags = [ arch ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ${arch} $out/bin/bandwidth
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://zsmith.co/bandwidth.html";
|
|
description = "Artificial benchmark for identifying weaknesses in the memory subsystem";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.x86;
|
|
maintainers = with maintainers; [ r-burns ];
|
|
};
|
|
}
|