From 0ad6c091e7928eead14e16bf76075030aa5745dc Mon Sep 17 00:00:00 2001 From: "Yury G. Kudryashov" Date: Thu, 29 Mar 2012 18:02:10 +0000 Subject: [PATCH] pam_usb: drop hal dependency It doesn't use hal, though many functions are named *_hal_*. All d-bus calls actually ask UDisks. svn path=/nixpkgs/trunk/; revision=33476 --- pkgs/os-specific/linux/pam_usb/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/os-specific/linux/pam_usb/default.nix b/pkgs/os-specific/linux/pam_usb/default.nix index d26617d8e66..b5672728b53 100644 --- a/pkgs/os-specific/linux/pam_usb/default.nix +++ b/pkgs/os-specific/linux/pam_usb/default.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, makeWrapper, useSetUID, dbus, libxml2, pam, hal, pkgconfig, pmount, python, pythonDBus}: +{stdenv, fetchurl, makeWrapper, useSetUID, dbus, libxml2, pam, pkgconfig, pmount, python, pythonDBus}: let pmountBin = useSetUID pmount "/bin/pmount"; @@ -16,7 +16,7 @@ stdenv.mkDerivation rec { buildInputs = [ makeWrapper # pam_usb dependencies - dbus libxml2 pam hal pmount pkgconfig + dbus libxml2 pam pmount pkgconfig # pam_usb's tools dependencies python # cElementTree is included with python 2.5 and later.