xkblayout-state: add pkg

This commit is contained in:
Arseniy Seroka 2015-02-23 20:48:31 +03:00
parent 4ce947327a
commit 82c280c5b5
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ stdenv, fetchurl, qt4 }:
stdenv.mkDerivation rec {
name = "xkblayout-state";
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 ];
};
}

View file

@ -12042,6 +12042,8 @@ let
xkb_switch = callPackage ../tools/X11/xkb-switch { };
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
xmonad-with-packages = callPackage ../applications/window-managers/xmonad/wrapper.nix {
ghcWithPackages = haskellngPackages.ghcWithPackages;
packages = self: [];