Merge pull request #116002 from fatho/fix/dunst-src-hash

dunst: fix 1.6.1 src and build

authored by Mario Rodas and committed by GitHub 13941796 c5147860

+4 -7
+4 -7
pkgs/applications/misc/dunst/default.nix
··· 2 2 , pkg-config, which, perl, libXrandr 3 3 , cairo, dbus, systemd, gdk-pixbuf, glib, libX11, libXScrnSaver 4 4 , gtk3, wayland, wayland-protocols 5 - , libXinerama, libnotify, pango, xorgproto, librsvg, dunstify ? false 5 + , libXinerama, libnotify, pango, xorgproto, librsvg 6 6 }: 7 7 8 8 stdenv.mkDerivation rec { ··· 13 13 owner = "dunst-project"; 14 14 repo = "dunst"; 15 15 rev = "v${version}"; 16 - sha256 = "0irwkqcgwkqaylcpvqgh25gn2ysbdm2kydipxfzcq1ddj9ns6f9c"; 16 + sha256 = "0lga1kj2vjbj9g9rl93nivngjmk5fkxdxwal8w96x9whwk9jvdga"; 17 17 }; 18 18 19 19 nativeBuildInputs = [ perl pkg-config which systemd makeWrapper ]; ··· 29 29 makeFlags = [ 30 30 "PREFIX=$(out)" 31 31 "VERSION=$(version)" 32 + "SYSCONFDIR=$(out)/etc" 32 33 "SERVICEDIR_DBUS=$(out)/share/dbus-1/services" 33 34 "SERVICEDIR_SYSTEMD=$(out)/lib/systemd/user" 34 35 ]; 35 36 36 - buildFlags = if dunstify then [ "dunstify" ] else []; 37 - 38 - postInstall = lib.optionalString dunstify '' 39 - install -Dm755 dunstify $out/bin 40 - '' + '' 37 + postInstall = '' 41 38 wrapProgram $out/bin/dunst \ 42 39 --set GDK_PIXBUF_MODULE_FILE "$GDK_PIXBUF_MODULE_FILE" 43 40 '';