nixpkgs/pkgs/applications/misc/dunst/default.nix

52 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, makeWrapper
2018-01-21 16:01:58 +01:00
, pkgconfig, which, perl, libXrandr
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
2018-06-25 19:45:57 +02:00
, libXinerama, libnotify, libxdg_basedir, pango, xproto, librsvg, dunstify ? false
}:
stdenv.mkDerivation rec {
name = "dunst-${version}";
version = "1.3.2";
src = fetchFromGitHub {
2017-07-15 14:54:18 +02:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
sha256 = "1kqlshaflp306yrjjmc28pghi1y5p24vdx4bxf8i4n9khdawb514";
};
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
buildInputs = [
2017-07-15 14:54:18 +02:00
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
2018-01-21 16:01:58 +01:00
libXinerama libnotify libxdg_basedir pango xproto librsvg libXrandr
];
outputs = [ "out" "man" ];
2018-01-21 16:01:58 +01:00
makeFlags = [
"PREFIX=$(out)"
"VERSION=$(version)"
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
];
2018-06-25 19:45:57 +02:00
buildFlags = if dunstify then [ "dunstify" ] else [];
postInstall = ''
2018-06-25 19:45:57 +02:00
${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"
'';
meta = with stdenv.lib; {
description = "Lightweight and customizable notification daemon";
2018-01-21 16:01:58 +01:00
homepage = https://dunst-project.org/;
license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
platforms = platforms.linux;
maintainers = [ maintainers.domenkozar ];
};
}