summary refs log tree commit diff
path: root/pkgs/tools/misc/filebench/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/filebench/default.nix')
-rw-r--r--pkgs/tools/misc/filebench/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/misc/filebench/default.nix b/pkgs/tools/misc/filebench/default.nix
index 1e8b5a493f5fa..e934da76e6e51 100644
--- a/pkgs/tools/misc/filebench/default.nix
+++ b/pkgs/tools/misc/filebench/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, autoreconfHook, bison, flex }:
 
 stdenv.mkDerivation rec {
   name = "filebench-${version}";
@@ -6,9 +6,11 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://sourceforge/filebench/${name}.tar.gz";
-    sha256 = "0y06f9mp4xry6j1jamqprzn963l0krqayv14yv66pm51hdh53ld1";
+    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/;