summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-02-07 16:17:51 +0100
committerGitHub <noreply@github.com>2021-02-07 16:17:51 +0100
commit14700018de8ddac2ff3e05054283516b707066a8 (patch)
tree3852446f9c10ebfcb2245fa5cd29611804b49cdc
parent2f7651e678c28bcf3474ff38f2d178d52db5b3d2 (diff)
parent522574791ff1766ffe05aff467644af7bef9b795 (diff)
downloadnixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar.gz
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar.bz2
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar.lz
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar.xz
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.tar.zst
nixpkgs-14700018de8ddac2ff3e05054283516b707066a8.zip
Merge pull request #112229 from cnnrro/fix/wmutils-core-update
wmutils-core: 1.1 -> 1.5
-rw-r--r--pkgs/tools/X11/wmutils-core/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/X11/wmutils-core/default.nix b/pkgs/tools/X11/wmutils-core/default.nix
index c8f3bd52c3e..9250a10064f 100644
--- a/pkgs/tools/X11/wmutils-core/default.nix
+++ b/pkgs/tools/X11/wmutils-core/default.nix
@@ -1,15 +1,15 @@
-{ lib, stdenv, fetchurl, libxcb }:
+{ lib, stdenv, fetchurl, libxcb, xcbutil, xcb-util-cursor }:
 
 stdenv.mkDerivation rec {
   pname = "wmutils-core";
-  version = "1.1";
+  version = "1.5";
 
   src = fetchurl {
     url = "https://github.com/wmutils/core/archive/v${version}.tar.gz";
-    sha256 = "0aq95khs154j004b79w9rgm80vpggxfqynha5rckm2cx20d1fa5s";
+    sha256 = "0wk39aq2lrnc0wjs8pv3cigw3lwy2qzaw0v61bwknd5wabm25bvj";
   };
 
-  buildInputs = [ libxcb ];
+  buildInputs = [ libxcb xcbutil xcb-util-cursor ];
 
   installFlags = [ "PREFIX=$(out)" ];