filebench: Init at 1.4.9.1
This commit is contained in:
parent
d5a7032042
commit
d27caa486b
2 changed files with 21 additions and 0 deletions
19
pkgs/tools/misc/filebench/default.nix
Normal file
19
pkgs/tools/misc/filebench/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue