about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-08-03 20:10:36 +0200
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-08-04 11:55:25 +0200
commite4b9770b1ad369effd531cbe802d2200a0d4558c (patch)
tree5e10465c6cef2f53b1d6eb36ad6b4f5e6b4b99f3 /pkgs
parent977c397643daea45ebfb34d1e8394994bcf67c18 (diff)
downloadnixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar.gz
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar.bz2
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar.lz
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar.xz
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.tar.zst
nixlib-e4b9770b1ad369effd531cbe802d2200a0d4558c.zip
xbindkeys: pin guile_2_2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/X11/xbindkeys/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/X11/xbindkeys/default.nix b/pkgs/tools/X11/xbindkeys/default.nix
index 17e0ca66e3f3..ed9e5ba43c99 100644
--- a/pkgs/tools/X11/xbindkeys/default.nix
+++ b/pkgs/tools/X11/xbindkeys/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, pkg-config, libX11, guile }:
+{ lib, stdenv, fetchurl, pkg-config, libX11, guile_2_2 }:
 
 stdenv.mkDerivation rec {
   pname = "xbindkeys";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   };
 
   nativeBuildInputs = [ pkg-config ];
-  buildInputs = [ libX11 guile ];
+  buildInputs = [ libX11 guile_2_2 ];
 
   meta = {
     homepage = "https://www.nongnu.org/xbindkeys/xbindkeys.html";