56 lines
951 B
Nix
56 lines
951 B
Nix
{ lib, stdenv
|
|
, fetchFromGitHub
|
|
, gettext
|
|
, xorg
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
, ibus
|
|
, gtk3
|
|
, go
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ibus-bamboo";
|
|
version = "0.6.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BambooEngine";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "17zgxqlsjkqyjywynqzmymw310aypcsjdrwnc7hx7v7xwal8iwjk";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
gettext
|
|
pkg-config
|
|
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 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 ];
|
|
};
|
|
}
|