dwl: 0.2 -> 0.2.1

The patches that were previously added in nixpkgs are included
in the new version.

authored by

Stefan Frijters and committed by
Jonathan Ringer
6eef66f4 71238fe5

+3 -17
+3 -17
pkgs/applications/window-managers/dwl/default.nix
··· 17 17 }: 18 18 19 19 let 20 - # Add two patches to fix compile errors with wlroots 0.13: 21 - totalPatches = patches ++ [ 22 - # Fix the renamed constant WLR_KEY_PRESSED => WL_KEYBOARD_KEY_STATE_PRESSED 23 - # https://github.com/djpohly/dwl/pull/66 24 - (fetchpatch { 25 - url = "https://github.com/djpohly/dwl/commit/a42613db9d9f6debfa4fb2363d75af9457d238ed.patch"; 26 - sha256 = "0h76hx1fhazi07gqg7sljh13f91v6bvjy7m9qqmimhvqgfwdcc0j"; 27 - }) 28 - # Use the new signature for wlr_backend_autocreate, which removes an argument: 29 - # https://github.com/djpohly/dwl/pull/76 30 - (fetchpatch { 31 - url = "https://github.com/djpohly/dwl/commit/0ff13cf216056a36a261f4eed53c6a864989a9fb.patch"; 32 - sha256 = "18clpdb4il1vxf1b0cx0qrwild68s9dism8ab66zpmvxs5qag2dm"; 33 - }) 34 - ]; 20 + totalPatches = patches ++ [ ]; 35 21 in 36 22 37 23 stdenv.mkDerivation rec { 38 24 pname = "dwl"; 39 - version = "0.2"; 25 + version = "0.2.1"; 40 26 41 27 src = fetchFromGitHub { 42 28 owner = "djpohly"; 43 29 repo = pname; 44 30 rev = "v${version}"; 45 - sha256 = "gUaFTkpIQDswEubllMgvxPfCaEYFO7mODzjPyW7XsGQ="; 31 + sha256 = "sha256-lfUAymLA4+E9kULZIueA+9gyVZYgaVS0oTX0LJjsSEs="; 46 32 }; 47 33 48 34 nativeBuildInputs = [ pkg-config ];