at 24.11-pre 22 lines 678 B view raw
1{ lib, stdenv, fetchurl, autoreconfHook, bison, flex }: 2 3stdenv.mkDerivation rec { 4 pname = "filebench"; 5 version = "1.4.9.1"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/filebench/${pname}-${version}.tar.gz"; 9 sha256 = "13hmx67lsz367sn8lrvz1780mfczlbiz8v80gig9kpkpf009yksc"; 10 }; 11 12 nativeBuildInputs = [ autoreconfHook bison flex ]; 13 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 }; 22}