mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Merge pull request #42579 from dasJ/dunstify
dunst: Also install dunstify
This commit is contained in:
commit
ce2f8bfda8
1 changed files with 5 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, makeWrapper
|
||||
, pkgconfig, which, perl, libXrandr
|
||||
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
|
||||
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg
|
||||
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg, dunstify ? false
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -31,7 +31,11 @@ stdenv.mkDerivation rec {
|
|||
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
|
||||
];
|
||||
|
||||
buildFlags = if dunstify then [ "dunstify" ] else [];
|
||||
|
||||
postInstall = ''
|
||||
${if dunstify then "install -Dm755 dunstify $out/bin" else ""}
|
||||
install -Dm755 dunstify $out/bin
|
||||
wrapProgram $out/bin/dunst \
|
||||
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
||||
'';
|
||||
|
|
Loading…
Reference in a new issue