crun: 1.8.3 -> 1.8.4
[NixPkgs.git] / pkgs / tools / X11 / ksuperkey / default.nix
blob8b77ae550300f0d7772582674d3887f1a64682ad
1 { lib, stdenv, fetchFromGitHub, libX11, libXtst, pkg-config, xorgproto, libXi }:
3 stdenv.mkDerivation rec {
4   pname = "ksuperkey";
5   version = "0.4";
7   src = fetchFromGitHub {
8     owner = "hanschen";
9     repo = "ksuperkey";
10     rev = "v${version}";
11     sha256 = "1dvgf356fihfav8pjzww1q6vgd96c5h18dh8vpv022g9iipiwq8a";
12   };
14   makeFlags = [ "PREFIX=${placeholder "out"}" ];
16   nativeBuildInputs = [ pkg-config ];
17   buildInputs = [ libX11 libXtst xorgproto libXi ];
19   meta = with lib; {
20     description = "A tool to be able to bind the super key as a key rather than a modifier";
21     homepage = "https://github.com/hanschen/ksuperkey";
22     license = licenses.gpl3;
23     maintainers = [ ];
24     platforms = platforms.linux;
25   };