0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
14 lines
239 B
Nix
14 lines
239 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtsvg
|
|
, hunspell
|
|
, pkg-config
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtvirtualkeyboard";
|
|
qtInputs = [ qtbase qtdeclarative qtsvg ];
|
|
propagatedBuildInputs = [ hunspell ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
}
|