summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-02-25 03:23:58 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-02-25 17:41:16 +0100
commita31d98f3120e0f676303b7fc3e84424e6b325290 (patch)
tree50eed3f28ebcae3fc1d7e6676d7446e8b55e2f53 /pkgs/tools/system
parent20c5476a8bf09330e438f6d083bd4e197fefd17e (diff)
downloadnixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar.gz
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar.bz2
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar.lz
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar.xz
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.tar.zst
nixlib-a31d98f3120e0f676303b7fc3e84424e6b325290.zip
tree-wide: autorename gnome packages to use dashes
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/thermald/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/system/thermald/default.nix b/pkgs/tools/system/thermald/default.nix
index 67dd3588b007..5eac81c1748b 100644
--- a/pkgs/tools/system/thermald/default.nix
+++ b/pkgs/tools/system/thermald/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus_glib, libxml2 }:
+{ stdenv, fetchFromGitHub, autoconf, automake, libtool, pkgconfig, dbus_libs, dbus-glib, libxml2 }:
 
 stdenv.mkDerivation rec {
   name = "thermald-${version}";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ autoconf automake libtool dbus_libs dbus_glib libxml2 ];
+  buildInputs = [ autoconf automake libtool dbus_libs dbus-glib libxml2 ];
 
   patchPhase = ''sed -e 's/upstartconfdir = \/etc\/init/upstartconfdir = $(out)\/etc\/init/' -i data/Makefile.am'';