summary refs log tree commit diff
path: root/pkgs/tools/X11/xrestop/default.nix
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2021-01-17 18:08:59 +0100
committerJörg Thalheim <joerg@thalheim.io>2021-01-17 18:08:59 +0100
commit1279bf812ca11fa50a501aad5116c51afd7390a6 (patch)
tree46a5de6a33bf5736a3e9b3e886dc7542cec83b61 /pkgs/tools/X11/xrestop/default.nix
parent9541eb734da2e3cf67ff6c9e8e9a1c46b00d5eb1 (diff)
parentd87e126913a3ba87f26f5b0bada589d4cfa8e850 (diff)
downloadnixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.gz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.bz2
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.lz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.xz
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.tar.zst
nixpkgs-1279bf812ca11fa50a501aad5116c51afd7390a6.zip
Merge remote-tracking branch 'upstream/master' into HEAD
Diffstat (limited to 'pkgs/tools/X11/xrestop/default.nix')
-rw-r--r--pkgs/tools/X11/xrestop/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/X11/xrestop/default.nix b/pkgs/tools/X11/xrestop/default.nix
index 945f21c8cb1..e2b87e7380c 100644
--- a/pkgs/tools/X11/xrestop/default.nix
+++ b/pkgs/tools/X11/xrestop/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, xorg, pkgconfig, ncurses }:
+{ lib, stdenv, fetchurl, xorg, pkg-config, ncurses }:
 stdenv.mkDerivation {
 
   pname = "xrestop";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
     sha256 = "0mz27jpij8am1s32i63mdm58znfijcpfhdqq1npbmvgclyagrhk7";
   };
 
-  nativeBuildInputs = [ pkgconfig ];
+  nativeBuildInputs = [ pkg-config ];
   buildInputs = [ xorg.libX11 xorg.libXres xorg.libXext ncurses ];
 
   meta = {