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