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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

63 lines
1.8 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper
, pkg-config, which, perl, jq, libXrandr, coreutils
2019-05-22 11:03:39 +00:00
, cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver
, wayland, wayland-protocols
, libXinerama, libnotify, pango, xorgproto, librsvg
, testers, dunst
}:
stdenv.mkDerivation rec {
2019-07-07 14:59:58 +00:00
pname = "dunst";
2023-04-26 03:29:45 +00:00
version = "1.9.2";
src = fetchFromGitHub {
2017-07-15 12:54:18 +00:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
2023-04-26 03:29:45 +00:00
sha256 = "sha256-8IH0WTPSaAundhYh4l7gQR66nyT38H4DstRTm+Xh+Z8=";
};
nativeBuildInputs = [ perl pkg-config 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
wayland wayland-protocols
];
outputs = [ "out" "man" ];
2018-01-21 15:01:58 +00:00
makeFlags = [
"PREFIX=$(out)"
"VERSION=$(version)"
"SYSCONFDIR=$(out)/etc"
2018-01-21 15:01:58 +00:00
"SERVICEDIR_DBUS=$(out)/share/dbus-1/services"
"SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user"
];
postInstall = ''
wrapProgram $out/bin/dunst \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
2023-03-15 06:49:05 +00:00
wrapProgram $out/bin/dunstctl \
--prefix PATH : "${lib.makeBinPath [ coreutils dbus ]}"
2023-03-15 06:49:05 +00:00
install -D contrib/_dunst.zshcomp $out/share/zsh/site-functions/_dunst
install -D contrib/_dunstctl.zshcomp $out/share/zsh/site-functions/_dunstctl
substituteInPlace $out/share/zsh/site-functions/_dunstctl \
--replace "jq -M" "${jq}/bin/jq -M"
'';
passthru.tests.version = testers.testVersion { package = dunst; };
2021-11-08 07:47:40 +00:00
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 ];
2023-08-04 19:10:05 +00:00
mainProgram = "dunst";
};
}