mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 22:23:15 +00:00
13 lines
185 B
Nix
13 lines
185 B
Nix
{ qtModule
|
|
, qtbase
|
|
, qtdeclarative
|
|
, qtmultimedia
|
|
, assimp
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qt3d";
|
|
qtInputs = [ qtbase qtdeclarative qtmultimedia ];
|
|
propagatedBuildInputs = [ assimp ];
|
|
}
|