2018-05-16 23:13:19 +01:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper
|
2018-01-21 15:01:58 +00:00
|
|
|
, pkgconfig, which, perl, libXrandr
|
|
|
|
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
|
2018-12-31 03:40:47 +00:00
|
|
|
, libXinerama, libnotify, libxdg_basedir, pango, xorgproto, librsvg, dunstify ? false
|
2013-03-20 20:19:43 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-05-24 12:03:04 +01:00
|
|
|
name = "dunst-${version}";
|
2018-05-11 16:14:35 +01:00
|
|
|
version = "1.3.2";
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 12:03:04 +01:00
|
|
|
src = fetchFromGitHub {
|
2017-07-15 13:54:18 +01:00
|
|
|
owner = "dunst-project";
|
2016-05-24 12:03:04 +01:00
|
|
|
repo = "dunst";
|
|
|
|
rev = "v${version}";
|
2018-05-11 16:14:35 +01:00
|
|
|
sha256 = "1kqlshaflp306yrjjmc28pghi1y5p24vdx4bxf8i4n9khdawb514";
|
2013-03-20 20:19:43 +00:00
|
|
|
};
|
|
|
|
|
2018-05-16 23:13:19 +01:00
|
|
|
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 12:03:04 +01:00
|
|
|
buildInputs = [
|
2017-07-15 13:54:18 +01:00
|
|
|
cairo dbus gdk_pixbuf glib libX11 libXScrnSaver
|
2018-12-31 03:40:47 +00:00
|
|
|
libXinerama libnotify libxdg_basedir pango xorgproto librsvg libXrandr
|
2016-05-24 12:03:04 +01:00
|
|
|
];
|
2013-03-20 20:19:43 +00:00
|
|
|
|
2016-05-24 12:03:04 +01:00
|
|
|
outputs = [ "out" "man" ];
|
2015-06-04 07:42:37 +01:00
|
|
|
|
2018-01-21 15:01:58 +00:00
|
|
|
makeFlags = [
|
|
|
|
"PREFIX=$(out)"
|
|
|
|
"VERSION=$(version)"
|
|
|
|
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
|
|
|
|
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
|
|
|
|
];
|
2016-05-24 12:03:04 +01:00
|
|
|
|
2018-06-25 18:45:57 +01:00
|
|
|
buildFlags = if dunstify then [ "dunstify" ] else [];
|
|
|
|
|
2018-07-06 16:11:14 +01:00
|
|
|
postInstall = stdenv.lib.optionalString dunstify ''
|
2018-06-25 18:45:57 +01:00
|
|
|
install -Dm755 dunstify $out/bin
|
2018-07-06 16:11:14 +01:00
|
|
|
'' + ''
|
2018-05-16 23:13:19 +01:00
|
|
|
wrapProgram $out/bin/dunst \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
|
|
'';
|
|
|
|
|
2016-05-24 12:03:04 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Lightweight and customizable notification daemon";
|
2018-01-21 15:01:58 +00:00
|
|
|
homepage = https://dunst-project.org/;
|
2016-05-24 12:03:04 +01:00
|
|
|
license = licenses.bsd3;
|
2013-03-22 12:00:49 +00:00
|
|
|
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
|
2016-05-24 12:03:04 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = [ maintainers.domenkozar ];
|
2013-03-20 20:19:43 +00:00
|
|
|
};
|
|
|
|
}
|