468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
34 lines
914 B
Nix
34 lines
914 B
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, gnome
|
|
, gtk-doc, gtk3, libX11, libXext, libXrender, gobject-introspection
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "keybinder3";
|
|
version = "0.3.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kupferlauncher";
|
|
repo = "keybinder";
|
|
rev = "keybinder-3.0-v${version}";
|
|
sha256 = "196ibn86j54fywfwwgyh89i9wygm4vh7ls19fn20vrnm6ijlzh9r";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoconf automake libtool pkg-config ];
|
|
buildInputs = [
|
|
gnome.gnome-common gtk-doc gtk3
|
|
libX11 libXext libXrender gobject-introspection
|
|
];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh --prefix="$out"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Library for registering global key bindings";
|
|
homepage = "https://github.com/kupferlauncher/keybinder/";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.cstrahan ];
|
|
};
|
|
}
|