xkb-switch: 1.3.1 -> 1.5.0, rename from xkb_switch
This commit is contained in:
parent
5373cb26ef
commit
88a82a4dc9
@ -1,7 +1,7 @@
|
|||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, python, cmake, vim, ruby
|
, python, cmake, vim, ruby
|
||||||
, which, fetchgit, llvmPackages, rustPlatform
|
, which, fetchgit, llvmPackages, rustPlatform
|
||||||
, xkb_switch, fzf, skim
|
, xkb-switch, fzf, skim
|
||||||
, python3, boost, icu, ncurses
|
, python3, boost, icu, ncurses
|
||||||
, ycmd, rake
|
, ycmd, rake
|
||||||
, substituteAll
|
, substituteAll
|
||||||
@ -308,9 +308,9 @@ self: super: {
|
|||||||
vim-xkbswitch = super.vim-xkbswitch.overrideAttrs(old: {
|
vim-xkbswitch = super.vim-xkbswitch.overrideAttrs(old: {
|
||||||
patchPhase = ''
|
patchPhase = ''
|
||||||
substituteInPlace plugin/xkbswitch.vim \
|
substituteInPlace plugin/xkbswitch.vim \
|
||||||
--replace /usr/local/lib/libxkbswitch.so ${xkb_switch}/lib/libxkbswitch.so
|
--replace /usr/local/lib/libxkbswitch.so ${xkb-switch}/lib/libxkbswitch.so
|
||||||
'';
|
'';
|
||||||
buildInputs = [ xkb_switch ];
|
buildInputs = [ xkb-switch ];
|
||||||
});
|
});
|
||||||
|
|
||||||
vim-yapf = super.vim-yapf.overrideAttrs(old: {
|
vim-yapf = super.vim-yapf.overrideAttrs(old: {
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
{ stdenv, fetchgit, cmake, libX11 }:
|
{ stdenv, fetchFromGitHub, cmake, libX11, libxkbfile }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "xkb-switch-${version}";
|
name = "xkb-switch-${version}";
|
||||||
version = "1.3.1";
|
version = "1.5.0";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = https://github.com/ierton/xkb-switch.git;
|
owner = "ierton";
|
||||||
rev = "351c84370ad0fa4aaaab9a32817859b1d5fb2a11";
|
repo = "xkb-switch";
|
||||||
sha256 = "0ilj3amwidi7imjvi8hr62y7j8zl809r5xhs7kv816773x32gpxq";
|
rev = version;
|
||||||
|
sha256 = "03wk2gg3py97kx0kjzbjrikld1sa55i6mgi398jbcbiyx2gjna78";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ cmake libX11 ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
buildInputs = [ libX11 libxkbfile ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Switch your X keyboard layouts from the command line";
|
description = "Switch your X keyboard layouts from the command line";
|
||||||
|
|
||||||
homepage = https://github.com/ierton/xkb-switch;
|
homepage = https://github.com/ierton/xkb-switch;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ smironov ];
|
maintainers = with maintainers; [ smironov ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -20240,7 +20240,7 @@ in
|
|||||||
|
|
||||||
xpointerbarrier = callPackage ../tools/X11/xpointerbarrier {};
|
xpointerbarrier = callPackage ../tools/X11/xpointerbarrier {};
|
||||||
|
|
||||||
xkb_switch = callPackage ../tools/X11/xkb-switch { };
|
xkb-switch = callPackage ../tools/X11/xkb-switch { };
|
||||||
|
|
||||||
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
|
xkblayout-state = callPackage ../applications/misc/xkblayout-state { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user