1{ stdenv, fetchurl }:
2
3stdenv.mkDerivation rec {
4 name = "filebench-${version}";
5 version = "1.4.9.1";
6
7 src = fetchurl {
8 url = "mirror://sourceforge/filebench/${name}.tar.gz";
9 sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1";
10 };
11
12 meta = with stdenv.lib; {
13 description = "File system and storage benchmark that can generate both micro and macro workloads";
14 homepage = https://sourceforge.net/projects/filebench/;
15 license = licenses.cddl;
16 maintainers = [ maintainers.dezgeg ];
17 platforms = platforms.linux;
18 };
19}