Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

78 lines
1.7 KiB
Nix

{
stdenv,
lib,
fetchFromGitHub,
gettext,
pkg-config,
wrapGAppsHook3,
ibus,
glib,
gobject-introspection,
gtk3,
python3,
autoreconfHook,
intltool,
}:
let
pythonModules = with python3.pkgs; [
pygobject3
pycangjie
(toPythonModule ibus)
];
# Upstream builds Python packages as a part of a non-python
# autotools build, making it awkward to rely on Nixpkgs Python builders.
# Hence we manually set up PYTHONPATH.
pythonPath = "$out/${python3.sitePackages}" + ":" + python3.pkgs.makePythonPath pythonModules;
in
stdenv.mkDerivation {
pname = "ibus-cangjie";
version = "unstable-2023-07-25";
src = fetchFromGitHub {
owner = "Cangjians";
repo = "ibus-cangjie";
rev = "46c36f578047bb3cb2ce777217abf528649bc58d";
sha256 = "sha256-msVqWougc40bVXIonJA6K/VgurnDeR2TdtGKfd9rzwM=";
};
buildInputs = [
glib
gtk3
ibus
python3
]
++ pythonModules;
nativeBuildInputs = [
autoreconfHook
intltool
gettext
gobject-introspection
pkg-config
wrapGAppsHook3
];
# Upstream builds Python packages as a part of a non-python
# autotools build, making it awkward to rely on Nixpkgs Python builders.
postInstall = ''
gappsWrapperArgs+=(--prefix PYTHONPATH : "${pythonPath}")
'';
postFixup = ''
wrapGApp $out/lib/ibus-cangjie/ibus-engine-cangjie
'';
meta = {
isIbusEngine = true;
description = "IBus engine for users of the Cangjie and Quick input methods";
mainProgram = "ibus-setup-cangjie";
homepage = "https://github.com/Cangjians/ibus-cangjie";
license = lib.licenses.gpl3Plus;
platforms = lib.platforms.linux;
maintainers = [ ];
};
}