8 lines
214 B
Nix
8 lines
214 B
Nix
{ qtModule, qtbase, qtdeclarative }:
|
|
|
|
qtModule {
|
|
pname = "qtremoteobjects";
|
|
propagatedBuildInputs = [ qtbase qtdeclarative ];
|
|
# cycle is detected in build when adding "dev" "bin" too
|
|
outputs = [ "out" ];
|
|
}
|