8 lines
150 B
Nix
8 lines
150 B
Nix
|
{ qtModule, qtbase }:
|
||
|
|
||
|
qtModule {
|
||
|
name = "qtxmlpatterns";
|
||
|
qtInputs = [ qtbase ];
|
||
|
devTools = [ "bin/xmlpatterns" "bin/xmlpatternsvalidator" ];
|
||
|
}
|