2017-11-18 20:15:27 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, bison, flex }:
|
2016-04-28 01:31:21 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "filebench";
|
2016-04-28 01:31:21 +01:00
|
|
|
version = "1.4.9.1";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "mirror://sourceforge/filebench/${pname}-${version}.tar.gz";
|
2017-11-18 20:15:27 +00:00
|
|
|
sha256 = "13hmx67lsz367sn8lrvz1780mfczlbiz8v80gig9kpkpf009yksc";
|
2016-04-28 01:31:21 +01:00
|
|
|
};
|
|
|
|
|
2017-11-18 20:15:27 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook bison flex ];
|
|
|
|
|
2016-04-28 01:31:21 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "File system and storage benchmark that can generate both micro and macro workloads";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/filebench/";
|
2016-04-28 01:31:21 +01:00
|
|
|
license = licenses.cddl;
|
|
|
|
maintainers = [ maintainers.dezgeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|