My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/misc/fsmark/default.nix

28 lines
664 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "fsmark";
version = "3.3";
src = fetchurl {
url = "mirror://sourceforge/fsmark/${version}/fs_mark-${version}.tar.gz";
sha256 = "15f8clcz49qsfijdmcz165ysp8v4ybsm57d3dxhhlnq1bp1i9w33";
};
patchPhase = ''
sed -i Makefile -e 's/-static //'
'';
installPhase = ''
mkdir -p $out/bin
cp fs_mark $out/bin/
'';
meta = with lib; {
description = "Synchronous write workload file system benchmark";
homepage = "https://sourceforge.net/projects/fsmark/";
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}