repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git]
/
pkgs
/
tools
/
inputmethods
/
fcitx
/
default.nix
blob
fc28a08b4b79fb2afd982b5a23030de8cecf56bd
1
{ callPackage, plugins ? [] }:
2
3
let
4
unwrapped = callPackage ./unwrapped.nix { };
5
wrapped = callPackage ./wrapper.nix {
6
plugins = plugins;
7
fcitx = unwrapped;
8
};
9
in if plugins == []
10
then unwrapped
11
else wrapped