cd7d8a60b4
Qt 5.8 is now the default version.
9 lines
269 B
Nix
9 lines
269 B
Nix
{ qtSubmodule, lib, copyPathsToStore, python2, qtbase, qtsvg, qtxmlpatterns }:
|
|
|
|
qtSubmodule {
|
|
name = "qtdeclarative";
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
|
|
nativeBuildInputs = [ python2 ];
|
|
}
|