summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2020-12-30 00:53:01 +0000
committerGitHub <noreply@github.com>2020-12-30 00:53:01 +0000
commit31fc47581244ce947c2e91f817bc823c000c4c35 (patch)
tree6ab88f3910267be47527308aa776dfef21f0f00a /pkgs/tools
parentff873c7c213c0ab112a60b151a12261bbb40a585 (diff)
parent3c08a64b7dc4bf94a4e83dd0eac3253138ccfaea (diff)
downloadnixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar.gz
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar.bz2
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar.lz
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar.xz
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.tar.zst
nixpkgs-31fc47581244ce947c2e91f817bc823c000c4c35.zip
Merge master into staging-next
Diffstat (limited to 'pkgs/tools')
-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 00000000000..9485cb62b2b
--- /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;
+  };
+}