nixpkgs/pkgs/tools/misc/filebench/default.nix

22 lines
647 B
Nix
Raw Normal View History

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