summary refs log tree commit diff
path: root/pkgs/shells/jush/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/jush/default.nix')
-rw-r--r--pkgs/shells/jush/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/jush/default.nix b/pkgs/shells/jush/default.nix
index 9894c90bb69e2..f6d07814ce129 100644
--- a/pkgs/shells/jush/default.nix
+++ b/pkgs/shells/jush/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }:
 
 stdenv.mkDerivation rec {
   pname = "jush";
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
 
   passthru.shellPath = "/bin/jush";
 
-  meta = with stdenv.lib; {
+  meta = with lib; {
     description = "just a useless shell";
     homepage = "https://github.com/troglobit/jush";
     license = licenses.isc;