nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 qtModule,
3 qtbase,
4 qtdeclarative,
5 qtsvg,
6 hunspell,
7 pkg-config,
8 fetchpatch,
9}:
10
11qtModule {
12 pname = "qtvirtualkeyboard";
13 propagatedBuildInputs = [
14 qtbase
15 qtdeclarative
16 qtsvg
17 hunspell
18 ];
19 nativeBuildInputs = [ pkg-config ];
20 patches = [
21 # https://qt-project.atlassian.net/browse/QTBUG-137440
22 (fetchpatch {
23 name = "rb-link-core-into-styles.patch";
24 url = "https://github.com/qt/qtvirtualkeyboard/commit/0b1e8be8dd874e1fbacd0c30ed5be7342f6cd44d.patch";
25 hash = "sha256-Uk6EJOlkCRLUg1w3ljHaxV/dXEVWyUpP/ijoyjptbNc=";
26 })
27 ];
28}