3
0
Fork 0
forked from mirrors/nixpkgs

filebench: rehash source

The new source is a VCS dump at the same revision: no files changed, generated
files deleted.
This commit is contained in:
Orivej Desh 2017-11-18 20:15:27 +00:00
parent 011e69ea3f
commit 26aaf6bde2

View file

@ -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/;