93f36bf9ce
$PATH (because upower is called by dbus which doesn't allow setting the $PATH). svn path=/nixpkgs/branches/kde-4.7/; revision=27928
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ stdenv, fetchurl, coreutils, gnugrep, utillinux, module_init_tools
|
|
, procps, kbd }:
|
|
|
|
let
|
|
|
|
binPath = stdenv.lib.makeSearchPath "bin"
|
|
[ coreutils gnugrep utillinux module_init_tools procps kbd ];
|
|
|
|
sbinPath = stdenv.lib.makeSearchPath "sbin"
|
|
[ procps ];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pm-utils-1.4.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://pm-utils.freedesktop.org/releases/${name}.tar.gz";
|
|
sha256 = "02qc6zaf7ams6qcc470fwb6jvr4abv3lrlx16clqpn36501rkn4f";
|
|
};
|
|
|
|
configureFlags = "--sysconfdir=/etc";
|
|
|
|
preConfigure =
|
|
''
|
|
# Install the manpages (xmlto isn't really needed).
|
|
substituteInPlace man/Makefile.in --replace '@HAVE_XMLTO_TRUE@' ""
|
|
|
|
# Set the PATH properly.
|
|
substituteInPlace pm/pm-functions.in --replace '/sbin:/usr/sbin:/bin:/usr/bin' '$PATH:${binPath}:${sbinPath}'
|
|
|
|
substituteInPlace src/pm-action.in --replace 'tr ' '${coreutils}/bin/tr '
|
|
|
|
substituteInPlace pm/sleep.d/00logging --replace /bin/uname "$(type -P uname)"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = http://pm-utils.freedesktop.org/wiki/;
|
|
description = "A small collection of scripts that handle suspend and resume on behalf of HAL";
|
|
license = "GPLv2";
|
|
};
|
|
}
|