summaryrefslogtreecommitdiffstats
path: root/pkgs/shells/jush
diff options
context:
space:
mode:
authorBen Siraphob <bensiraphob@gmail.com>2021-01-17 09:15:29 +0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-01-16 23:49:59 -0800
commit82ba45d59ea531f06e8849c284618067d2822d3a (patch)
tree4dba0451c75787723e1302259bdd4866c9e900ed /pkgs/shells/jush
parentd13840759c7497cca2bb7f890ed66932a1f9c857 (diff)
pkgs/shells: pkgconfig -> pkg-config
Diffstat (limited to 'pkgs/shells/jush')
-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 f6d07814ce12..12cd6c935c05 100644
--- a/pkgs/shells/jush/default.nix
+++ b/pkgs/shells/jush/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, editline }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }:
stdenv.mkDerivation rec {
pname = "jush";
@@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
};
- nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ editline ];