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

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

54 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitHub, makeWrapper
, pkg-config, which, perl, libXrandr
2019-05-22 13:03:39 +02: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 16:59:58 +02:00
pname = "dunst";
2022-07-07 11:19:07 +02:00
version = "1.9.0";
src = fetchFromGitHub {
2017-07-15 14:54:18 +02:00
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
2022-07-07 11:19:07 +02:00
sha256 = "sha256-fRPhu+kpwLPvdzIpXSjXFzQTfv4xewOMv/1ZqLJw3dk=";
};
nativeBuildInputs = [ perl pkg-config 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
wayland wayland-protocols
];
outputs = [ "out" "man" ];
2018-01-21 16:01:58 +01:00
makeFlags = [
"PREFIX=$(out)"
"VERSION=$(version)"
"SYSCONFDIR=$(out)/etc"
2018-01-21 16:01:58 +01: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"
'';
passthru.tests.version = testers.testVersion { package = dunst; };
2021-11-08 08:47:40 +01:00
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 ];
};
}