about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/filebench/default.nix
blob: e934da76e6e51ff186f1d2eace5d13658d0ef60a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, autoreconfHook, bison, flex }:

stdenv.mkDerivation rec {
  name = "filebench-${version}";
  version = "1.4.9.1";

  src = fetchurl {
    url = "mirror://sourceforge/filebench/${name}.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;
  };
}