summary refs log tree commit diff
path: root/pkgs/os-specific/linux/upower
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-12-25 18:15:36 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-12-25 18:17:00 +0100
commit38ee8859e8b68ea7210a6681695c448d8054e6a1 (patch)
tree06c268f081c6e3441dbcaa2c7d28da50e690c7e9 /pkgs/os-specific/linux/upower
parent1aec6479063ecb6de199bf21df76221b58d54bb3 (diff)
downloadnixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar.gz
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar.bz2
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar.lz
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar.xz
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.tar.zst
nixpkgs-38ee8859e8b68ea7210a6681695c448d8054e6a1.zip
upower_99: update
It doesn't depend on polkit anymore (upstream change in 0.99.1).
Diffstat (limited to 'pkgs/os-specific/linux/upower')
-rw-r--r--pkgs/os-specific/linux/upower/0.99.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/os-specific/linux/upower/0.99.nix b/pkgs/os-specific/linux/upower/0.99.nix
index c42fea16d35..fc04c613713 100644
--- a/pkgs/os-specific/linux/upower/0.99.nix
+++ b/pkgs/os-specific/linux/upower/0.99.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, dbus_tools, polkit
+{ stdenv, fetchurl, pkgconfig, glib, dbus, dbus_glib, dbus_tools
 , intltool, libxslt, docbook_xsl, udev, libusb1, pmutils
 , useSystemd ? true, systemd, gobjectIntrospection
 }:
@@ -6,15 +6,15 @@
 assert stdenv.isLinux;
 
 stdenv.mkDerivation rec {
-  name = "upower-0.99.0";
+  name = "upower-0.99.2";
 
   src = fetchurl {
     url = "http://upower.freedesktop.org/releases/${name}.tar.xz";
-    sha256 = "189rd8j5czy4fs7imxvr38icjh9vlgdz6ki2h08v530h96clndaz";
+    sha256 = "0vwlh20jmaf01m38kfn8yx2869a3clmkzlycrj99rf4nvwx4bp79";
   };
 
   buildInputs =
-    [ dbus_glib polkit intltool libxslt docbook_xsl udev libusb1 gobjectIntrospection ]
+    [ dbus_glib intltool libxslt docbook_xsl udev libusb1 gobjectIntrospection ]
     ++ stdenv.lib.optional useSystemd systemd;
 
   nativeBuildInputs = [ pkgconfig ];