filebench: Init at 1.4.9.1

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

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "filebench-${version}";
version = "1.4.9.1";
src = fetchurl {
url = "mirror://sourceforge/filebench/${name}.tar.gz";
sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1";
};
meta = with stdenv.lib; {
description = "File system and storage benchmark that can generate both micro and macro workloads";
homepage = https://sourceforge.net/projects/filebench/;
license = licenses.cddl;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}

View file

@ -770,6 +770,8 @@ in
fastJson = callPackage ../development/libraries/fastjson { };
filebench = callPackage ../tools/misc/filebench { };
fop = callPackage ../tools/typesetting/fop { };
fsmark = callPackage ../tools/misc/fsmark { };