2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchurl, qt4 }:
|
2015-02-23 18:48:31 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-04-10 22:44:34 +02:00
|
|
|
pname = "xkblayout-state";
|
2015-02-23 18:48:31 +01:00
|
|
|
version = "1b";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-10 22:44:34 +02:00
|
|
|
url = "https://github.com/nonpop/${pname}/archive/v${version}.tar.gz";
|
2015-02-23 18:48:31 +01:00
|
|
|
sha256 = "1m1nnplrdb2mclhj0881wf78ckvdnyk24g4k4p5s5gpd96cxxwnx";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ qt4 ];
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp xkblayout-state $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2015-02-23 18:48:31 +01:00
|
|
|
description = "A small command-line program to get/set the current XKB keyboard layout";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/nonpop/xkblayout-state";
|
2015-02-23 18:48:31 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.jagajaga ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = platforms.linux;
|
2015-02-23 18:48:31 +01:00
|
|
|
};
|
|
|
|
}
|