dmenu-wayland: unstable-2022-11-04 -> unstable-2023-05-18

rewine f33cdfa5 154dc02a

+7 -7
+7 -7
pkgs/applications/misc/dmenu/wayland.nix
··· 4 }: 5 6 stdenv.mkDerivation rec { 7 - pname = "dmenu-wayland-unstable"; 8 - version = "2022-11-04"; 9 10 src = fetchFromGitHub { 11 owner = "nyyManni"; 12 repo = "dmenu-wayland"; 13 - rev = "b60047236ef7a4e5dcde6c4ac0dcfaa070d90041"; 14 - sha256 = "sha256-CeJWLBPAzE3JITVuS6f4CQxLz9v09WvfG3O0wErJJS4="; 15 }; 16 17 outputs = [ "out" "man" ]; ··· 20 nativeBuildInputs = [ meson ninja pkg-config makeWrapper wayland-scanner ]; 21 buildInputs = [ cairo pango wayland-protocols glib wayland libxkbcommon ]; 22 23 - # Patch to support cross-compilation, see https://github.com/nyyManni/dmenu-wayland/pull/23/ 24 patches = [ 25 # can be removed when https://github.com/nyyManni/dmenu-wayland/pull/23 is included 26 (fetchpatch { 27 url = "https://github.com/nyyManni/dmenu-wayland/commit/3434410de5dcb007539495395f7dc5421923dd3a.patch"; 28 sha256 = "sha256-im16kU8RWrCY0btYOYjDp8XtfGEivemIPlhwPX0C77o="; 29 }) ··· 37 meta = with lib; { 38 license = licenses.mit; 39 platforms = platforms.linux; 40 - description = "dmenu for wayland-compositors"; 41 homepage = "https://github.com/nyyManni/dmenu-wayland"; 42 - maintainers = with maintainers; [ ]; 43 }; 44 }
··· 4 }: 5 6 stdenv.mkDerivation rec { 7 + pname = "dmenu-wayland"; 8 + version = "unstable-2023-05-18"; 9 10 src = fetchFromGitHub { 11 owner = "nyyManni"; 12 repo = "dmenu-wayland"; 13 + rev = "a380201dff5bfac2dace553d7eaedb6cea6855f9"; 14 + hash = "sha256-dqFvU2mRYEw7n8Fmbudwi5XMLQ7mQXFkug9D9j4FIrU="; 15 }; 16 17 outputs = [ "out" "man" ]; ··· 20 nativeBuildInputs = [ meson ninja pkg-config makeWrapper wayland-scanner ]; 21 buildInputs = [ cairo pango wayland-protocols glib wayland libxkbcommon ]; 22 23 patches = [ 24 # can be removed when https://github.com/nyyManni/dmenu-wayland/pull/23 is included 25 (fetchpatch { 26 + name = "support-cross-compilation.patch"; 27 url = "https://github.com/nyyManni/dmenu-wayland/commit/3434410de5dcb007539495395f7dc5421923dd3a.patch"; 28 sha256 = "sha256-im16kU8RWrCY0btYOYjDp8XtfGEivemIPlhwPX0C77o="; 29 }) ··· 37 meta = with lib; { 38 license = licenses.mit; 39 platforms = platforms.linux; 40 + description = "An efficient dynamic menu for wayland (wlroots)"; 41 homepage = "https://github.com/nyyManni/dmenu-wayland"; 42 + maintainers = with maintainers; [ rewine ]; 43 }; 44 }