aboutsummaryrefslogtreecommitdiff
path: root/pkgs/applications/misc/dunst
diff options
context:
space:
mode:
authorxrelkd <46590321+xrelkd@users.noreply.github.com>2019-07-07 22:59:58 +0800
committerMatthieu Coudron <coudron@iij.ad.jp>2019-07-08 04:59:44 +0200
commit13a06115a1fc41699b256aed2c8f6c83fcb79ac7 (patch)
treed9e19e185c967b5facbca247b41c6241f08a1490 /pkgs/applications/misc/dunst
parent566c8fde21c8026f1cf947b64b653656904f2c1e (diff)
dunst: 1.4.0 -> 1.4.1
Diffstat (limited to 'pkgs/applications/misc/dunst')
-rw-r--r--pkgs/applications/misc/dunst/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/misc/dunst/default.nix b/pkgs/applications/misc/dunst/default.nix
index 309d4d54ae5..35073db2ae1 100644
--- a/pkgs/applications/misc/dunst/default.nix
+++ b/pkgs/applications/misc/dunst/default.nix
@@ -1,18 +1,18 @@
-{ stdenv, fetchFromGitHub, makeWrapper
+{ stdenv, lib, fetchFromGitHub, makeWrapper
, pkgconfig, which, perl, libXrandr
, cairo, dbus, systemd, gdk_pixbuf, glib, libX11, libXScrnSaver
, libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false
}:
stdenv.mkDerivation rec {
- name = "dunst-${version}";
- version = "1.4.0";
+ pname = "dunst";
+ version = "1.4.1";
src = fetchFromGitHub {
owner = "dunst-project";
repo = "dunst";
rev = "v${version}";
- sha256 = "1rwbylygd88r61yrxc7ckg9svgq8b1i2falr0mk9sabqxzn9050s";
+ sha256 = "0xjj1f2jr1ja5grj6wrx5jjz1sx5fpqnvkw7nqi4452j3nc4p4l2";
};
nativeBuildInputs = [ perl pkgconfig which systemd makeWrapper ];
@@ -33,19 +33,19 @@ stdenv.mkDerivation rec {
buildFlags = if dunstify then [ "dunstify" ] else [];
- postInstall = stdenv.lib.optionalString dunstify ''
+ postInstall = lib.optionalString dunstify ''
install -Dm755 dunstify $out/bin
'' + ''
wrapProgram $out/bin/dunst \
--set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE"
'';
- meta = with stdenv.lib; {
+ meta = with lib; {
description = "Lightweight and customizable notification daemon";
- homepage = https://dunst-project.org/;
+ homepage = "https://dunst-project.org/";
license = licenses.bsd3;
# NOTE: 'unix' or even 'all' COULD work too, I'm not sure
platforms = platforms.linux;
- maintainers = [ maintainers.domenkozar ];
+ maintainers = with maintainers; [ domenkozar ];
};
}