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