osl: use python3
This commit is contained in:
parent
6882ab13fc
commit
3bb6cb267e
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
|
{ clangStdenv, lib, fetchFromGitHub, cmake, zlib, openexr,
|
||||||
openimageio, llvm, boost165, flex, bison, partio, pugixml,
|
openimageio, llvm, boost165, flex, bison, partio, pugixml,
|
||||||
util-linux, python
|
util-linux, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let boost_static = boost165.override { enableStatic = true; };
|
let boost_static = boost165.override { enableStatic = true; };
|
||||||
|
@ -26,7 +26,7 @@ in clangStdenv.mkDerivation rec {
|
||||||
zlib openexr openimageio llvm
|
zlib openexr openimageio llvm
|
||||||
partio pugixml
|
partio pugixml
|
||||||
util-linux # needed just for hexdump
|
util-linux # needed just for hexdump
|
||||||
python # CMake doesn't check this?
|
python3 # CMake doesn't check this?
|
||||||
];
|
];
|
||||||
# TODO: How important is partio? CMake doesn't seem to find it
|
# TODO: How important is partio? CMake doesn't seem to find it
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
|
Loading…
Reference in a new issue