fsmark: Init at 3.3

This commit is contained in:
Tuomas Tynkkynen 2016-04-28 03:03:14 +03:00
parent d418d82f53
commit d5a7032042
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "fsmark-${version}";
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 stdenv.lib; {
description = "Synchronous write workload file system benchmark";
homepage = https://sourceforge.net/projects/fsmark/;
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}

View file

@ -772,6 +772,8 @@ in
fop = callPackage ../tools/typesetting/fop { };
fsmark = callPackage ../tools/misc/fsmark { };
fzf = goPackages.fzf.bin // { outputs = [ "bin" ]; };
gencfsm = callPackage ../tools/security/gencfsm { };