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











                                                                                       
                                                                    












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

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

  buildInputs = [
    libX11 libXtst pkgconfig 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;
  };
}