mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
16 lines
183 B
Nix
16 lines
183 B
Nix
{
|
|
qtModule,
|
|
qtbase,
|
|
qtdeclarative,
|
|
openssl,
|
|
}:
|
|
|
|
qtModule {
|
|
pname = "qtquick3d";
|
|
propagatedBuildInputs = [
|
|
qtbase
|
|
qtdeclarative
|
|
];
|
|
buildInputs = [ openssl ];
|
|
}
|