summary refs log tree commit diff
path: root/pkgs/applications/misc/xkblayout-state/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/xkblayout-state/default.nix')
-rw-r--r--pkgs/applications/misc/xkblayout-state/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/xkblayout-state/default.nix b/pkgs/applications/misc/xkblayout-state/default.nix
new file mode 100644
index 00000000000..4ff838db653
--- /dev/null
+++ b/pkgs/applications/misc/xkblayout-state/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, qt4 }:
+
+stdenv.mkDerivation rec {
+  name = "xkblayout-state-${version}";
+  version = "1b";
+
+  src = fetchurl {
+    url = "https://github.com/nonpop/${name}/archive/v${version}.tar.gz";
+    sha256 = "1m1nnplrdb2mclhj0881wf78ckvdnyk24g4k4p5s5gpd96cxxwnx";
+  };
+
+  buildInputs = [ qt4 ];
+
+  installPhase = ''
+    mkdir -p $out/bin
+    cp xkblayout-state $out/bin
+  '';
+
+  meta = with stdenv.lib; {
+    description = "A small command-line program to get/set the current XKB keyboard layout";
+    homepage = https://github.com/nonpop/xkblayout-state;
+    license = licenses.gpl2;
+    maintainers = [ maintainers.jagajaga ];
+  };
+}