2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv
|
2020-12-26 22:13:26 +01:00
|
|
|
, 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 ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-12-26 22:13:26 +01:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|