forked from mirrors/nixpkgs
9 lines
267 B
Nix
9 lines
267 B
Nix
|
{ qtSubmodule, lib, copyPathsToStore, python, qtbase, qtsvg, qtxmlpatterns }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtdeclarative";
|
||
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
||
|
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
|
||
|
nativeBuildInputs = [ python ];
|
||
|
}
|