summary refs log blame commit diff
path: root/pkgs/development/libraries/keybinder/default.nix
blob: fb481c19d05f76b3ea84016f5984e6cb8d611b3f (plain) (tree)
1
2
3
4
5
6
7
8
                                                                       
                                                            

  
   
                                         
                            
                      


                    
                                        



                                                                          
                                     
                 
                                                             
                                          





                                
                    












                                                                            
                                                     
                                
                                


                                           
{ lib, stdenv, fetchurl, autoconf, automake, libtool, pkg-config, gnome
, gtk-doc, gtk2, python2Packages, lua, gobject-introspection
}:

let
  inherit (python2Packages) python pygtk;
in stdenv.mkDerivation rec {
  pname = "keybinder";
  version = "0.3.0";

  src = fetchurl {
    name = "${pname}-${version}.tar.gz";
    url = "https://github.com/engla/keybinder/archive/v${version}.tar.gz";
    sha256 = "0kkplz5snycik5xknwq1s8rnmls3qsp32z09mdpmaacydcw7g3cf";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [
    autoconf automake libtool gnome.gnome-common gtk-doc gtk2
    python pygtk lua gobject-introspection
  ];

  preConfigure = ''
    ./autogen.sh --prefix="$out"
  '';

  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``
      * Python bindings, ``python-keybinder``
      * An ``examples`` directory with programs in C, Lua, Python and Vala.
    '';
    homepage = "https://github.com/engla/keybinder/";
    license = licenses.gpl2Plus;
    platforms = platforms.linux;
    maintainers = [ maintainers.bjornfor ];
  };
}