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
This commit is contained in:
Yury G. Kudryashov 2012-03-29 18:02:10 +00:00
parent 742894471d
commit 0ad6c091e7

View File

@ -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.