summary refs log tree commit diff
path: root/pkgs/tools/misc/filebench
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/filebench')
-rw-r--r--pkgs/tools/misc/filebench/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/filebench/default.nix b/pkgs/tools/misc/filebench/default.nix
index 4cd572ac99204..ca62c8c4a1a8f 100644
--- a/pkgs/tools/misc/filebench/default.nix
+++ b/pkgs/tools/misc/filebench/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, autoreconfHook, bison, flex }:
+{ lib, stdenv, fetchurl, autoreconfHook, bison, flex }:
 
 stdenv.mkDerivation rec {
   pname = "filebench";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ autoreconfHook bison flex ];
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "File system and storage benchmark that can generate both micro and macro workloads";
     homepage = "https://sourceforge.net/projects/filebench/";
     license = licenses.cddl;