summaryrefslogtreecommitdiffstats
path: root/pkgs/os-specific/linux/xsensors/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/xsensors/default.nix')
-rw-r--r--pkgs/os-specific/linux/xsensors/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/xsensors/default.nix b/pkgs/os-specific/linux/xsensors/default.nix
index 440a797a7232..02ce560d8a94 100644
--- a/pkgs/os-specific/linux/xsensors/default.nix
+++ b/pkgs/os-specific/linux/xsensors/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, lib, fetchurl, gtk2, pkgconfig, lm_sensors }:
+{ stdenv, lib, fetchurl, gtk2, pkg-config, lm_sensors }:
stdenv.mkDerivation rec {
pname = "xsensors";
@@ -7,7 +7,7 @@ stdenv.mkDerivation rec {
url = "http://www.linuxhardware.org/xsensors/xsensors-${version}.tar.gz";
sha256 = "1siplsfgvcxamyqf44h71jx6jdfmvhfm7mh0y1q8ps4zs6pj2zwh";
};
- nativeBuildInputs = [ pkgconfig ];
+ nativeBuildInputs = [ pkg-config ];
buildInputs = [
gtk2 lm_sensors
];