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

52 lines
1.4 KiB
Nix
Raw Normal View History

2019-07-07 14:59:58 +00:00
{ stdenv, lib, fetchFromGitHub, makeWrapper
2018-01-21 15:01:58 +00:00
, pkgconfig, which, perl, libXrandr
2019-05-22 11:03:39 +00:00
, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver
, libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false
}:
stdenv.mkDerivation rec {
2019-07-07 14:59:58 +00:00
pname = "dunst";
version = "1.4.1";
src = fetchFromGitHub {
2017-07-15 12:54:18 +00:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
2019-07-07 14:59:58 +00:00
sha256 = "0xjj1f2jr1ja5grj6wrx5jjz1sx5fpqnvkw7nqi4452j3nc4p4l2";
};
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
buildInputs = [
2019-05-22 11:03:39 +00:00
cairo dbus gdk-pixbuf glib libX11 libXScrnSaver
libXinerama libnotify pango xorgproto librsvg libXrandr
];
outputs = [ "out" "man" ];
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"
];
2018-06-25 17:45:57 +00:00
buildFlags = if dunstify then [ "dunstify" ] else [];
2019-07-07 14:59:58 +00:00
postInstall = lib.optionalString dunstify ''
2018-06-25 17:45:57 +00:00
install -Dm755 dunstify $out/bin
'' + ''
wrapProgram $out/bin/dunst \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
'';
2019-07-07 14:59:58 +00:00
meta = with lib; {
description = "Lightweight and customizable notification daemon";
2019-07-07 14:59:58 +00: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 14:59:58 +00:00
maintainers = with maintainers; [ domenkozar ];
};
}