mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
9999bf7a21
gobject-introspection should be in nativeBuildInputs for cross to work properly (so propagations and hook work properly)
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoconf, automake, libtool, pkg-config, gnome
|
|
, gtk-doc, gtk2, lua, gobject-introspection
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "keybinder";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "engla";
|
|
repo = "keybinder";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-elL6DZtzCwAtoyGZYP0jAma6tHPks2KAtrziWtBENGU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config autoconf automake gobject-introspection ];
|
|
|
|
buildInputs = [
|
|
libtool gnome.gnome-common gtk-doc gtk2
|
|
lua
|
|
];
|
|
|
|
configureFlags = [ "--disable-python" ];
|
|
|
|
preConfigure = ''
|
|
./autogen.sh --prefix="$out" $configureFlags
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Library for registering global key bindings";
|
|
longDescription = ''
|
|
keybinder is a library for registering global keyboard shortcuts.
|
|
Keybinder works with GTK-based applications using the X Window System.
|
|
|
|
The library contains:
|
|
|
|
* A C library, ``libkeybinder``
|
|
* Gobject-Introspection (gir) generated bindings
|
|
* Lua bindings, ``lua-keybinder``
|
|
'';
|
|
homepage = "https://github.com/engla/keybinder/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|