19 lines
217 B
Nix
19 lines
217 B
Nix
|
|
{
|
||
|
|
libglut,
|
||
|
|
libcufft,
|
||
|
|
libcurand,
|
||
|
|
libGLU,
|
||
|
|
libglvnd,
|
||
|
|
libgbm,
|
||
|
|
}:
|
||
|
|
prevAttrs: {
|
||
|
|
buildInputs = prevAttrs.buildInputs or [ ] ++ [
|
||
|
|
libglut
|
||
|
|
libcufft
|
||
|
|
libcurand
|
||
|
|
libGLU
|
||
|
|
libglvnd
|
||
|
|
libgbm
|
||
|
|
];
|
||
|
|
}
|