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

52 lines
1.4 KiB
Nix
Raw Normal View History

2019-07-07 16:59:58 +02:00
{ stdenv, lib, fetchFromGitHub, makeWrapper
2018-01-21 16:01:58 +01:00
, pkgconfig, which, perl, libXrandr
2019-05-22 13:03:39 +02:00
, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver
, libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false
}:
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";
src = fetchFromGitHub {
2017-07-15 14:54:18 +02:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
2020-07-24 02:43:50 +02:00
sha256 = "0irwkqcgwkqaylcpvqgh25gn2ysbdm2kydipxfzcq1ddj9ns6f9c";
};
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
buildInputs = [
2019-05-22 13:03:39 +02:00
cairo dbus gdk-pixbuf glib libX11 libXScrnSaver
libXinerama libnotify pango xorgproto 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 [];
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
'' + ''
wrapProgram $out/bin/dunst \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
'';
2019-07-07 16:59:58 +02:00
meta = with lib; {
description = "Lightweight and customizable notification daemon";
2019-07-07 16:59:58 +02:00
homepage = "https://dunst-project.org/";
license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
platforms = platforms.linux;
2019-07-07 16:59:58 +02:00
maintainers = with maintainers; [ domenkozar ];
};
}