1 { lib, stdenv, fetchFromGitHub, libX11, libXtst, pkg-config, xorgproto, libXi }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "1dvgf356fihfav8pjzww1q6vgd96c5h18dh8vpv022g9iipiwq8a";
14 makeFlags = [ "PREFIX=${placeholder "out"}" ];
16 nativeBuildInputs = [ pkg-config ];
17 buildInputs = [ libX11 libXtst xorgproto libXi ];
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;
24 platforms = platforms.linux;