Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
48 lines
862 B
Nix
48 lines
862 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, cmake
|
|
, extra-cmake-modules
|
|
, fcitx5
|
|
, fcitx5-qt
|
|
, gettext
|
|
, qtbase
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fcitx5-unikey";
|
|
version = "5.1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "fcitx";
|
|
repo = "fcitx5-unikey";
|
|
rev = version;
|
|
hash = "sha256-CcyDK+knBXh2P+g3aB0Cv8F5BX7uCRbYwHjMEYo9k8A=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
extra-cmake-modules
|
|
];
|
|
|
|
buildInputs = [
|
|
qtbase
|
|
fcitx5
|
|
fcitx5-qt
|
|
gettext
|
|
];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "USE_QT6" (lib.versions.major qtbase.version == "6"))
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
meta = with lib; {
|
|
description = "Unikey engine support for Fcitx5";
|
|
homepage = "https://github.com/fcitx/fcitx5-unikey";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ berberman ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|