9 lines
269 B
Nix
Raw Normal View History

2016-10-18 23:00:16 +02:00
{ qtSubmodule, lib, copyPathsToStore, python2, qtbase, qtsvg, qtxmlpatterns }:
2016-07-29 16:33:02 -05:00
qtSubmodule {
name = "qtdeclarative";
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
2016-10-18 23:00:16 +02:00
nativeBuildInputs = [ python2 ];
2016-07-29 16:33:02 -05:00
}