summary refs log tree commit diff
path: root/pkgs/tools/misc/grex
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/grex')
-rw-r--r--pkgs/tools/misc/grex/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/grex/default.nix b/pkgs/tools/misc/grex/default.nix
index c4f1c8ea9c7..31306fd7aa4 100644
--- a/pkgs/tools/misc/grex/default.nix
+++ b/pkgs/tools/misc/grex/default.nix
@@ -1,4 +1,4 @@
-{ stdenv
+{ lib, stdenv
 , fetchFromGitHub
 , fetchpatch
 , rustPlatform
@@ -26,7 +26,7 @@ rustPlatform.buildRustPackage rec {
     $out/bin/grex --help > /dev/null
   '';
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "A command-line tool for generating regular expressions from user-provided test cases";
     homepage = "https://github.com/pemistahl/grex";
     license = licenses.asl20;