summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2021-04-30 21:39:22 +0200
committerMichael Weiss <dev.primeos@gmail.com>2021-04-30 21:45:59 +0200
commit1be22216349b44e6b8ded8580134b76c85593d9e (patch)
tree6aa8d1d83b24faef93cf17e056c5d10ebe7a0e28 /pkgs/development/libraries/wayland
parent20ebbe6b592de5076b80b6ccb3230e2d8ad7b763 (diff)
downloadnixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar.gz
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar.bz2
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar.lz
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar.xz
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.tar.zst
nixpkgs-1be22216349b44e6b8ded8580134b76c85593d9e.zip
wayland-protocols: 1.20 -> 1.21
Announcement:
https://lists.freedesktop.org/archives/wayland-devel/2021-April/041815.html
Diffstat (limited to 'pkgs/development/libraries/wayland')
-rw-r--r--pkgs/development/libraries/wayland/protocols.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix
index 23258aff3e9..8a2b05aa4df 100644
--- a/pkgs/development/libraries/wayland/protocols.nix
+++ b/pkgs/development/libraries/wayland/protocols.nix
@@ -1,19 +1,15 @@
-{ lib, stdenv, fetchurl, pkg-config
-, wayland
-}:
+{ lib, stdenv, fetchurl, wayland-scanner }:
 
 stdenv.mkDerivation rec {
   pname = "wayland-protocols";
-  version = "1.20";
+  version = "1.21";
 
   src = fetchurl {
     url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
-    sha256 = "1rsdgvkkvxs3cjhpl6agvbkm53vm7k8rg127j9y2vn33m2hvg0lp";
+    sha256 = "1rfdlkzz67qsb955zqb8jbw3m22pl6ppvrvfq8bqiqcb5n24b6dr";
   };
 
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = [ wayland ];
+  nativeBuildInputs = [ wayland-scanner ];
 
   meta = {
     description = "Wayland protocol extensions";