2018-05-17 00:13:19 +02:00
|
|
|
{ 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
|
2013-03-20 21:19:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-24 13:03:04 +02:00
|
|
|
name = "dunst-${version}";
|
2018-05-11 17:14:35 +02:00
|
|
|
version = "1.3.2";
|
2013-03-20 21:19:43 +01:00
|
|
|
|
2016-05-24 13:03:04 +02:00
|
|
|
src = fetchFromGitHub {
|
2017-07-15 14:54:18 +02:00
|
|
|
owner = "dunst-project";
|
2016-05-24 13:03:04 +02:00
|
|
|
repo = "dunst";
|
|
|
|
rev = "v${version}";
|
2018-05-11 17:14:35 +02:00
|
|
|
sha256 = "1kqlshaflp306yrjjmc28pghi1y5p24vdx4bxf8i4n9khdawb514";
|
2013-03-20 21:19:43 +01:00
|
|
|
};
|
|
|
|
|
2018-05-17 00:13:19 +02:00
|
|
|
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
|
2013-03-20 21:19:43 +01:00
|
|
|
|
2016-05-24 13:03:04 +02:00
|
|
|
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
|
2016-05-24 13:03:04 +02:00
|
|
|
];
|
2013-03-20 21:19:43 +01:00
|
|
|
|
2016-05-24 13:03:04 +02:00
|
|
|
outputs = [ "out" "man" ];
|
2015-06-04 08:42:37 +02:00
|
|
|
|
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"
|
|
|
|
];
|
2016-05-24 13:03:04 +02:00
|
|
|
|
2018-06-25 19:45:57 +02:00
|
|
|
buildFlags = if dunstify then [ "dunstify" ] else [];
|
|
|
|
|
2018-05-17 00:13:19 +02:00
|
|
|
postInstall = ''
|
2018-06-25 19:45:57 +02:00
|
|
|
${if dunstify then "install -Dm755 dunstify $out/bin" else ""}
|
|
|
|
install -Dm755 dunstify $out/bin
|
2018-05-17 00:13:19 +02:00
|
|
|
wrapProgram $out/bin/dunst \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
|
|
'';
|
|
|
|
|
2016-05-24 13:03:04 +02:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight and customizable notification daemon";
|
2018-01-21 16:01:58 +01:00
|
|
|
homepage = https://dunst-project.org/;
|
2016-05-24 13:03:04 +02:00
|
|
|
license = licenses.bsd3;
|
2013-03-22 13:00:49 +01:00
|
|
|
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
2016-05-24 13:03:04 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-03-20 21:19:43 +01:00
|
|
|
};
|
|
|
|
}
|