yafaray-core: relax python dependency
This commit is contained in:
parent
ff0da2c3e7
commit
c964291f30
|
@ -1,7 +1,7 @@
|
||||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig, opencv, zlib
|
{ stdenv, fetchFromGitHub, cmake, pkgconfig, opencv, zlib
|
||||||
, libxml2, freetype, libjpeg, libtiff, swig, openexr
|
, libxml2, freetype, libjpeg, libtiff, swig, openexr
|
||||||
, ilmbase, boost165
|
, ilmbase, boost165
|
||||||
, withPython ? true, python35
|
, withPython ? true, python3
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cmake pkgconfig boost165 opencv zlib libxml2 freetype libjpeg libtiff
|
cmake pkgconfig boost165 opencv zlib libxml2 freetype libjpeg libtiff
|
||||||
swig openexr ilmbase
|
swig openexr ilmbase
|
||||||
] ++ stdenv.lib.optional withPython python35;
|
] ++ stdenv.lib.optional withPython python3;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "A free, open source raytracer";
|
description = "A free, open source raytracer";
|
||||||
|
|
Loading…
Reference in New Issue