2019-07-07 16:59:58 +02:00
|
|
|
{ stdenv, lib, fetchFromGitHub, makeWrapper
|
2021-01-17 03:09:27 +01:00
|
|
|
, pkg-config, which, perl, libXrandr
|
2019-05-22 13:03:39 +02:00
|
|
|
, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver
|
2019-04-15 06:56:50 +02:00
|
|
|
, libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false
|
2013-03-20 21:19:43 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-07-07 16:59:58 +02:00
|
|
|
pname = "dunst";
|
2020-07-24 02:43:50 +02:00
|
|
|
version = "1.5.0";
|
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}";
|
2020-07-24 02:43:50 +02:00
|
|
|
sha256 = "0irwkqcgwkqaylcpvqgh25gn2ysbdm2kydipxfzcq1ddj9ns6f9c";
|
2013-03-20 21:19:43 +01:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:09:27 +01:00
|
|
|
nativeBuildInputs = [ perl pkg-config which systemd makeWrapper ];
|
2013-03-20 21:19:43 +01:00
|
|
|
|
2016-05-24 13:03:04 +02:00
|
|
|
buildInputs = [
|
2019-05-22 13:03:39 +02:00
|
|
|
cairo dbus gdk-pixbuf glib libX11 libXScrnSaver
|
2019-04-15 06:56:50 +02:00
|
|
|
libXinerama libnotify pango xorgproto 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 [];
|
|
|
|
|
2019-07-07 16:59:58 +02:00
|
|
|
postInstall = lib.optionalString dunstify ''
|
2018-06-25 19:45:57 +02:00
|
|
|
install -Dm755 dunstify $out/bin
|
2018-07-06 17:11:14 +02:00
|
|
|
'' + ''
|
2018-05-17 00:13:19 +02:00
|
|
|
wrapProgram $out/bin/dunst \
|
|
|
|
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
|
|
|
|
'';
|
|
|
|
|
2019-07-07 16:59:58 +02:00
|
|
|
meta = with lib; {
|
2016-05-24 13:03:04 +02:00
|
|
|
description = "Lightweight and customizable notification daemon";
|
2019-07-07 16:59:58 +02: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;
|
2019-07-07 16:59:58 +02:00
|
|
|
maintainers = with maintainers; [ domenkozar ];
|
2013-03-20 21:19:43 +01:00
|
|
|
};
|
|
|
|
}
|