summary refs log blame commit diff
path: root/pkgs/tools/X11/ksuperkey/default.nix
blob: cd80e328657670fc8d0b5076656d98e06c443f2a (plain) (tree)
1
2
3
4
5
6
7
8




                                                                                       
                                    
                 
                                                    




                                                     
                                                                    












                                                                                            
{ stdenv, fetchgit, libX11, libXtst, pkgconfig, inputproto, libXi, xproto, xextproto }:

stdenv.mkDerivation rec {
  name = "ksuperkey-git-2015-07-21";

  nativeBuildInputs = [ pkgconfig ];
  buildInputs = [
    libX11 libXtst inputproto libXi xproto xextproto
  ];

  src = fetchgit {
    url = "https://github.com/hanschen/ksuperkey";
    rev = "e75a31a0e3e80b14341e92799a7ce3232ac37639";
    sha256 = "0y4wkak9dvcm14g54ll1ln9aks2az63hx8fv7b8d3nscxjbkxl6g";
  };

  preConfigure = ''
    makeFlags="$makeFlags PREFIX=$out"
  '';

  meta = {
    description = "A tool to be able to bind the super key as a key rather than a modifier";
    license = stdenv.lib.licenses.gpl3;
    maintainers = [ stdenv.lib.maintainers.vozz ];
    platforms = stdenv.lib.platforms.linux;
  };
}