depot/third_party/nixpkgs/pkgs/tools/misc/filebench/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

21 lines
649 B
Nix

{ stdenv, fetchurl, autoreconfHook, bison, flex }:
stdenv.mkDerivation rec {
pname = "filebench";
version = "1.4.9.1";
src = fetchurl {
url = "mirror://sourceforge/filebench/${pname}-${version}.tar.gz";
sha256 = "13hmx67lsz367sn8lrvz1780mfczlbiz8v80gig9kpkpf009yksc";
};
nativeBuildInputs = [ autoreconfHook bison flex ];
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;
};
}