15 lines
239 B
Nix
15 lines
239 B
Nix
|
{ qtModule
|
||
|
, qtbase
|
||
|
, qtdeclarative
|
||
|
, qtsvg
|
||
|
, hunspell
|
||
|
, pkg-config
|
||
|
}:
|
||
|
|
||
|
qtModule {
|
||
|
pname = "qtvirtualkeyboard";
|
||
|
qtInputs = [ qtbase qtdeclarative qtsvg ];
|
||
|
propagatedBuildInputs = [ hunspell ];
|
||
|
nativeBuildInputs = [ pkg-config ];
|
||
|
}
|