nixpkgs/pkgs/applications/misc/xkblayout-state/default.nix

26 lines
646 B
Nix
Raw Normal View History

2015-02-23 17:48:31 +00:00
{ stdenv, fetchurl, qt4 }:
stdenv.mkDerivation rec {
2015-03-31 00:18:42 +00:00
name = "xkblayout-state-${version}";
2015-02-23 17:48:31 +00:00
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 ];
};
}