keybinder3: use gtk-x11 on darwin

This commit is contained in:
Artturin 2021-07-31 22:00:34 +03:00
parent 84f58338db
commit 0a10f96f8a
2 changed files with 2 additions and 1 deletions

View file

@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
description = "Library for registering global key bindings";
homepage = "https://github.com/kupferlauncher/keybinder/";
license = licenses.mit;
platforms = platforms.linux;
platforms = platforms.unix;
maintainers = [ maintainers.cstrahan ];
};
}

View file

@ -17002,6 +17002,7 @@ with pkgs;
};
keybinder3 = callPackage ../development/libraries/keybinder3 {
gtk3 = if stdenv.isDarwin then gtk3-x11 else gtk3;
automake = automake111x;
};