summary refs log tree commit diff
path: root/pkgs/tools/misc/rargs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/rargs/default.nix')
-rw-r--r--pkgs/tools/misc/rargs/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/misc/rargs/default.nix b/pkgs/tools/misc/rargs/default.nix
index 6ebbeb39c6e..c8eea974750 100644
--- a/pkgs/tools/misc/rargs/default.nix
+++ b/pkgs/tools/misc/rargs/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, rustPlatform, fetchFromGitHub }:
+{ lib, stdenv, rustPlatform, fetchFromGitHub }:
 
 rustPlatform.buildRustPackage rec {
   pname   = "rargs";
@@ -15,7 +15,7 @@ rustPlatform.buildRustPackage rec {
 
   doCheck=false;  # `rargs`'s test depends on the deprecated `assert_cli` crate, which in turn is not in Nixpkgs
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "xargs + awk with pattern matching support";
     homepage    = "https://github.com/lolabout/rargs";
     license     = with licenses; [ mit ];