pytrainer: unpin python 3.10
[NixPkgs.git] / pkgs / tools / misc / filebench / default.nix
blob7cbb5f15936a66de3aa4e255943957a1a16e20e5
1 { lib, stdenv, fetchurl, autoreconfHook, bison, flex }:
3 stdenv.mkDerivation rec {
4   pname = "filebench";
5   version = "1.4.9.1";
7   src = fetchurl {
8     url = "mirror://sourceforge/filebench/filebench-${version}.tar.gz";
9     sha256 = "13hmx67lsz367sn8lrvz1780mfczlbiz8v80gig9kpkpf009yksc";
10   };
12   nativeBuildInputs = [ autoreconfHook bison flex ];
14   meta = with 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     mainProgram = "filebench";
21   };