11 lines
307 B
Nix
11 lines
307 B
Nix
{ qtSubmodule, lib, copyPathsToStore, qtscript, qtsvg, qtwebkit, qtxmlpatterns }:
|
|
|
|
qtSubmodule {
|
|
name = "qtquick1";
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
qtInputs = [ qtscript qtsvg qtwebkit qtxmlpatterns ];
|
|
postFixup = ''
|
|
fixQtModuleCMakeConfig "Declarative"
|
|
'';
|
|
}
|