mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
11 lines
234 B
Nix
11 lines
234 B
Nix
{ callPackage, plugins ? [] }:
|
|
|
|
let
|
|
unwrapped = callPackage ./unwrapped.nix { };
|
|
wrapped = callPackage ./wrapper.nix {
|
|
plugins = plugins;
|
|
fcitx = unwrapped;
|
|
};
|
|
in if plugins == []
|
|
then unwrapped
|
|
else wrapped
|