74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchFromGitHub
|
|
, fetchpatch
|
|
|
|
, anthy
|
|
, hunspell
|
|
, libchewing
|
|
, libpinyin
|
|
, maliit-framework
|
|
, pcre
|
|
, presage
|
|
, qtfeedback
|
|
, qtmultimedia
|
|
, qtquickcontrols2
|
|
, qtgraphicaleffects
|
|
|
|
, cmake
|
|
, pkg-config
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
pname = "maliit-keyboard";
|
|
version = "2.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "maliit";
|
|
repo = "keyboard";
|
|
rev = version;
|
|
sha256 = "sha256-XH3sKQuNMLgJi2aV+bnU2cflwkFIw4RYVfxzQiejCT0=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace data/schemas/org.maliit.keyboard.maliit.gschema.xml \
|
|
--replace /usr/share "$out/share"
|
|
'';
|
|
|
|
buildInputs = [
|
|
anthy
|
|
hunspell
|
|
libchewing
|
|
libpinyin
|
|
maliit-framework
|
|
pcre
|
|
presage
|
|
qtfeedback
|
|
qtmultimedia
|
|
qtquickcontrols2
|
|
qtgraphicaleffects
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_INSTALL_PREFIX=${placeholder "out"}"
|
|
"-DCMAKE_INSTALL_LIBDIR=lib"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
wrapGAppsHook
|
|
];
|
|
|
|
postInstall = ''
|
|
glib-compile-schemas "$out"/share/glib-2.0/schemas
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Virtual keyboard";
|
|
homepage = "http://maliit.github.io/";
|
|
license = with licenses; [ lgpl3Only bsd3 cc-by-30 ];
|
|
maintainers = with maintainers; [ samueldr ];
|
|
};
|
|
}
|