summary refs log tree commit diff
path: root/pkgs/shells/jush
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/shells/jush')
-rw-r--r--pkgs/shells/jush/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/shells/jush/default.nix b/pkgs/shells/jush/default.nix
index 9894c90bb69..12cd6c935c0 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, pkg-config, editline }:
 
 stdenv.mkDerivation rec {
   pname = "jush";
@@ -11,13 +11,13 @@ stdenv.mkDerivation rec {
     sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
   };
 
-  nativeBuildInputs = [ autoreconfHook pkgconfig ];
+  nativeBuildInputs = [ autoreconfHook pkg-config ];
 
   buildInputs = [ editline ];
 
   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;