summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/X11
diff options
context:
space:
mode:
authorPavol Rusnak <pavol@rusnak.io>2020-12-29 23:37:56 +0100
committerGitHub <noreply@github.com>2020-12-29 23:37:56 +0100
commitcf080616dcb415eb0f52c94bf1adc4723dac73c7 (patch)
tree8e3dd285ede6815fbc3f1de13a22dbb050530fc0 /pkgs/tools/X11
parent35f8b99b6e9d4a07ae82b5747d08ec667619a35c (diff)
parentd8235e3b1b16f361117f4836cd71f9c77f860357 (diff)
Merge pull request #107579 from ewok/xkb-switch-i3
xkb-switch-i3: init at 1.8.1
Diffstat (limited to 'pkgs/tools/X11')
-rw-r--r--pkgs/tools/X11/xkb-switch-i3/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/X11/xkb-switch-i3/default.nix b/pkgs/tools/X11/xkb-switch-i3/default.nix
new file mode 100644
index 000000000000..9485cb62b2bf
--- /dev/null
+++ b/pkgs/tools/X11/xkb-switch-i3/default.nix
@@ -0,0 +1,34 @@
+{ stdenv
+, cmake
+, fetchFromGitHub
+, i3
+, jsoncpp
+, libsigcxx
+, libX11
+, libxkbfile
+, pkg-config
+}:
+
+stdenv.mkDerivation rec {
+ pname = "xkb-switch-i3";
+ version = "1.8.1";
+
+ src = fetchFromGitHub {
+ owner = "Zebradil";
+ repo = "xkb-switch-i3";
+ rev = version;
+ sha256 = "15c19hp0n1k3w15qn97j6wp5b8hbk0mq6x3xjfn6dkkjfz1fl6cn";
+ fetchSubmodules = true;
+ };
+
+ nativeBuildInputs = [ cmake pkg-config ];
+ buildInputs = [ i3 jsoncpp libsigcxx libX11 libxkbfile ];
+
+ meta = with stdenv.lib; {
+ description = "Switch your X keyboard layouts from the command line(i3 edition)";
+ homepage = "https://github.com/Zebradil/xkb-switch-i3";
+ license = licenses.gpl3Plus;
+ maintainers = with maintainers; [ ewok ];
+ platforms = platforms.linux;
+ };
+}