9 lines
233 B
Nix
9 lines
233 B
Nix
|
{ qtSubmodule, python, qtbase, qtsvg, qtxmlpatterns }:
|
||
|
|
||
|
qtSubmodule {
|
||
|
name = "qtdeclarative";
|
||
|
patches = [ ./0001-nix-profiles-import-paths.patch ];
|
||
|
qtInputs = [ qtbase qtsvg qtxmlpatterns ];
|
||
|
nativeBuildInputs = [ python ];
|
||
|
}
|