lol
1{ stdenv, fetchurl, autoreconfHook, bison, flex }:
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 = "13hmx67lsz367sn8lrvz1780mfczlbiz8v80gig9kpkpf009yksc";
10 };
11
12 nativeBuildInputs = [ autoreconfHook bison flex ];
13
14 meta = with stdenv.lib; {
15 description = "File system and storage benchmark that can generate both micro and macro workloads";
16 homepage = https://sourceforge.net/projects/filebench/;
17 license = licenses.cddl;
18 maintainers = [ maintainers.dezgeg ];
19 platforms = platforms.linux;
20 };
21}