My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/keybinder3/default.nix

33 lines
913 B

{ 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.unix;
maintainers = [ maintainers.cstrahan ];
};
}