mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 18:37:04 +03:00
Merge pull request #89176 from SuperBo/add-ibus-bamboo
ibus-bamboo: init at 0.6.6
This commit is contained in:
commit
8f2a673722
@ -8035,6 +8035,12 @@
|
|||||||
githubId = 65870;
|
githubId = 65870;
|
||||||
name = "Сухарик";
|
name = "Сухарик";
|
||||||
};
|
};
|
||||||
|
superbo = {
|
||||||
|
email = "supernbo@gmail.com";
|
||||||
|
github = "SuperBo";
|
||||||
|
githubId = 2666479;
|
||||||
|
name = "Y Nguyen";
|
||||||
|
};
|
||||||
SuperSandro2000 = {
|
SuperSandro2000 = {
|
||||||
email = "sandro.jaeckel@gmail.com";
|
email = "sandro.jaeckel@gmail.com";
|
||||||
github = "SuperSandro2000";
|
github = "SuperSandro2000";
|
||||||
|
55
pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
Normal file
55
pkgs/tools/inputmethods/ibus-engines/ibus-bamboo/default.nix
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, gettext
|
||||||
|
, xorg
|
||||||
|
, pkgconfig
|
||||||
|
, wrapGAppsHook
|
||||||
|
, ibus
|
||||||
|
, gtk3
|
||||||
|
, go
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "ibus-bamboo";
|
||||||
|
version = "0.6.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "BambooEngine";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0bjcc2dm6c6s0v271nyslmwf5z0xxpcbvmk4lyirs48hc1bzv3n6";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
gettext
|
||||||
|
pkgconfig
|
||||||
|
wrapGAppsHook
|
||||||
|
go
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
xorg.libX11
|
||||||
|
xorg.xorgproto
|
||||||
|
xorg.libXtst
|
||||||
|
xorg.libXi
|
||||||
|
];
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export GOCACHE="$TMPDIR/go-cache"
|
||||||
|
sed -i "s,/usr,$out," bamboo.xml
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = [
|
||||||
|
"PREFIX=${placeholder "out"}"
|
||||||
|
];
|
||||||
|
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
isIbusEngine = true;
|
||||||
|
description = "A Vietnamese IME for IBus";
|
||||||
|
homepage = "https://github.com/BambooEngine/ibus-bamboo";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ superbo ];
|
||||||
|
};
|
||||||
|
}
|
@ -2806,6 +2806,8 @@ in
|
|||||||
ibus-engines = recurseIntoAttrs {
|
ibus-engines = recurseIntoAttrs {
|
||||||
anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { };
|
anthy = callPackage ../tools/inputmethods/ibus-engines/ibus-anthy { };
|
||||||
|
|
||||||
|
bamboo = callPackage ../tools/inputmethods/ibus-engines/ibus-bamboo { };
|
||||||
|
|
||||||
hangul = callPackage ../tools/inputmethods/ibus-engines/ibus-hangul { };
|
hangul = callPackage ../tools/inputmethods/ibus-engines/ibus-hangul { };
|
||||||
|
|
||||||
kkc = callPackage ../tools/inputmethods/ibus-engines/ibus-kkc { };
|
kkc = callPackage ../tools/inputmethods/ibus-engines/ibus-kkc { };
|
||||||
|
Loading…
Reference in New Issue
Block a user