mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
betterlockscreen: add missing runtime dependencies
This commit is contained in:
parent
51aa3cc485
commit
eb0332db39
2 changed files with 8 additions and 6 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
stdenv, makeWrapper, fetchFromGitHub,
|
||||
imagemagick, i3lock-color, xdpyinfo, xrandr, bc, feh
|
||||
imagemagick, i3lock-color, xdpyinfo, xrandr, bc, feh, procps, xrdb
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -18,11 +18,11 @@ stdenv.mkDerivation rec {
|
|||
|
||||
patches = [ ./replace-i3lock.patch ];
|
||||
|
||||
installPhase =
|
||||
let
|
||||
PATH =
|
||||
installPhase =
|
||||
let
|
||||
PATH =
|
||||
stdenv.lib.makeBinPath
|
||||
[imagemagick i3lock-color xdpyinfo xrandr bc feh];
|
||||
[imagemagick i3lock-color xdpyinfo xrandr bc feh procps xrdb];
|
||||
in ''
|
||||
mkdir -p $out/bin
|
||||
cp betterlockscreen $out/bin/betterlockscreen
|
||||
|
|
|
@ -18470,7 +18470,9 @@ in
|
|||
|
||||
i3lock-pixeled = callPackage ../misc/screensavers/i3lock-pixeled { };
|
||||
|
||||
betterlockscreen = callPackage ../misc/screensavers/betterlockscreen { };
|
||||
betterlockscreen = callPackage ../misc/screensavers/betterlockscreen {
|
||||
inherit (xorg) xrdb;
|
||||
};
|
||||
|
||||
i3minator = callPackage ../tools/misc/i3minator { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue