summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-08-27 14:14:31 +0000
committerAlyssa Ross <hi@alyssa.is>2020-08-27 14:32:20 +0000
commit989a03132b2bc84fcc87dbd0dfab9f70998010e1 (patch)
treef2999bffcc592e924709e22f65a101ee5c46cac3
parentb32bc2f2499de5f49e283bfc1657fa7464cfeb62 (diff)
downloadnixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar.gz
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar.bz2
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar.lz
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar.xz
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.tar.zst
nixpkgs-989a03132b2bc84fcc87dbd0dfab9f70998010e1.zip
wcm: 0.4.0 -> 0.5.0
-rw-r--r--pkgs/applications/window-managers/wayfire/wcm.nix24
1 files changed, 3 insertions, 21 deletions
diff --git a/pkgs/applications/window-managers/wayfire/wcm.nix b/pkgs/applications/window-managers/wayfire/wcm.nix
index 7c246d9e0f7..d8ffe22d58c 100644
--- a/pkgs/applications/window-managers/wayfire/wcm.nix
+++ b/pkgs/applications/window-managers/wayfire/wcm.nix
@@ -1,36 +1,18 @@
-{ stdenv, lib, fetchFromGitHub, fetchpatch, meson, ninja, pkg-config, wayland
+{ stdenv, lib, fetchFromGitHub, meson, ninja, pkg-config, wayland
 , gnome3, libevdev, libxml2, wayfire, wayland-protocols, wf-config, wf-shell
 }:
 
 stdenv.mkDerivation rec {
   pname = "wcm";
-  version = "0.4.0";
+  version = "0.5.0";
 
   src = fetchFromGitHub {
     owner = "WayfireWM";
     repo = "wcm";
     rev = "v${version}";
-    sha256 = "0irypa0814nmsmi9s8wxwfs507w41g41zjv8dkp0fdhg0429zxwa";
+    sha256 = "1b22gymqfn0c49nf39676q5bj25rxab874iayiq31cmn14r30dyg";
   };
 
-  patches = [
-    # The following three patches add support for loading Wayfire
-    # plugin metadata from outside of Wayfire's prefix.  Remove if
-    # <https://github.com/WayfireWM/wcm/pull/18> is applied upstream.
-    (fetchpatch {
-      url = "https://github.com/WayfireWM/wcm/commit/8930ce96f51175947c42a605a520adc7282138ef.patch";
-      sha256 = "10s3jikm99msxx73k6ccam8jlpdvvy379mifks4zmpfbag9ammrl";
-    })
-    (fetchpatch {
-      url = "https://github.com/WayfireWM/wcm/commit/07dfe16bf83ca3389ddfa8b1f90afee0a8c16135.patch";
-      sha256 = "1hgqzqpf2anyhfb1bl4v3n2vwsw0w7far651p7aisn9vr6iqbmls";
-    })
-    (fetchpatch {
-      url = "https://github.com/WayfireWM/wcm/commit/0864c3d842ca1dfe6b2d25013941a7679d867458.patch";
-      sha256 = "1z4zjl9al09wgb39gyc4g2ib5kkzppq37zla6ncmhmglis4l8arn";
-    })
-  ];
-
   strictDeps = true;
   nativeBuildInputs = [ meson ninja pkg-config wayland ];
   buildInputs = [