summary refs log tree commit diff
path: root/pkgs/development/libraries/wlroots/default.nix
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2020-01-01 17:11:53 +0100
committerMichael Weiss <dev.primeos@gmail.com>2020-01-18 23:19:53 +0100
commit1db77e58d0aa239df6208d6233685dda96dc2286 (patch)
treebcb2adf2b01c24f5cd3086fabf35437eeed7fc1b /pkgs/development/libraries/wlroots/default.nix
parentc438ce12a858f24c1a2479213eaab751da45fa50 (diff)
downloadnixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar.gz
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar.bz2
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar.lz
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar.xz
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.tar.zst
nixpkgs-1db77e58d0aa239df6208d6233685dda96dc2286.zip
wlroots: 0.8.1 -> 0.9.0
Changelog: https://github.com/swaywm/wlroots/releases/tag/0.9.0
Diffstat (limited to 'pkgs/development/libraries/wlroots/default.nix')
-rw-r--r--pkgs/development/libraries/wlroots/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/development/libraries/wlroots/default.nix b/pkgs/development/libraries/wlroots/default.nix
index a567e66285c..d1dcb5993ab 100644
--- a/pkgs/development/libraries/wlroots/default.nix
+++ b/pkgs/development/libraries/wlroots/default.nix
@@ -6,24 +6,15 @@
 
 stdenv.mkDerivation rec {
   pname = "wlroots";
-  version = "0.8.1";
+  version = "0.9.0";
 
   src = fetchFromGitHub {
     owner = "swaywm";
     repo = "wlroots";
     rev = version;
-    sha256 = "1ak86kx617c81dy85wg9rldy1z3n8ch93cjc05a4j6sifv0nkyfm";
+    sha256 = "0sifcrqs82kg9zxqnlr1pl4cw9v9qqakyg3rkysywc9svbikd1g3";
   };
 
-  patches = [
-    # add missing header that changed in mesa-19.2.2
-    # https://github.com/swaywm/wlroots/issues/1862
-    (fetchpatch {
-      url = "https://github.com/swaywm/wlroots/commit/d113e48a2a32542fe6e12f1759f07888364609bf.diff";
-      sha256 = "1h09j1gmnzlz4py92a92chgy8xzsd8h8xn5irq9s2hq4cla66h87";
-    })
-  ];
-
   # $out for the library and $examples for the example programs (in examples):
   outputs = [ "out" "examples" ];