nixpkgs/pkgs/by-name/ks/ksuperkey/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
792 B
Nix
Raw Normal View History

{
lib,
stdenv,
fetchFromGitHub,
libX11,
libXtst,
pkg-config,
xorgproto,
libXi,
}:
2015-07-21 21:37:29 +00:00
2020-05-17 00:26:34 +00:00
stdenv.mkDerivation rec {
pname = "ksuperkey";
version = "0.4";
2015-07-21 21:37:29 +00:00
2020-05-17 00:26:34 +00:00
src = fetchFromGitHub {
owner = "hanschen";
repo = "ksuperkey";
rev = "v${version}";
sha256 = "1dvgf356fihfav8pjzww1q6vgd96c5h18dh8vpv022g9iipiwq8a";
2015-07-21 21:37:29 +00:00
};
2020-05-17 00:26:34 +00:00
makeFlags = [ "PREFIX=${placeholder "out"}" ];
nativeBuildInputs = [ pkg-config ];
2020-05-17 00:26:34 +00:00
buildInputs = [
libX11
libXtst
xorgproto
libXi
];
2015-07-21 21:37:29 +00:00
meta = with lib; {
2015-07-21 21:37:29 +00:00
description = "Tool to be able to bind the super key as a key rather than a modifier";
2020-05-17 00:26:34 +00:00
homepage = "https://github.com/hanschen/ksuperkey";
license = licenses.gpl3;
2021-08-02 22:55:58 +00:00
maintainers = [ ];
2020-05-17 00:26:34 +00:00
platforms = platforms.linux;
2023-11-23 21:09:35 +00:00
mainProgram = "ksuperkey";
2015-07-21 21:37:29 +00:00
};
}