mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 15:41:40 +00:00
Merge pull request #107579 from ewok/xkb-switch-i3
xkb-switch-i3: init at 1.8.1
This commit is contained in:
commit
cf080616dc
|
@ -2867,6 +2867,12 @@
|
|||
githubId = 30512529;
|
||||
name = "Evils";
|
||||
};
|
||||
ewok = {
|
||||
email = "ewok@ewok.ru";
|
||||
github = "ewok";
|
||||
githubId = 454695;
|
||||
name = "Artur Taranchiev";
|
||||
};
|
||||
exfalso = {
|
||||
email = "0slemi0@gmail.com";
|
||||
github = "exfalso";
|
||||
|
|
34
pkgs/tools/X11/xkb-switch-i3/default.nix
Normal file
34
pkgs/tools/X11/xkb-switch-i3/default.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv
|
||||
, 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 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
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;
|
||||
};
|
||||
}
|
|
@ -25251,6 +25251,8 @@ in
|
|||
|
||||
xkb-switch = callPackage ../tools/X11/xkb-switch { };
|
||||
|
||||
xkb-switch-i3 = callPackage ../tools/X11/xkb-switch-i3 { };
|
||||
|
||||
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
|
||||
|
||||
xlife = callPackage ../applications/graphics/xlife { };
|
||||
|
|
Loading…
Reference in a new issue