doxygen: switch to python3
Also move the build-time dependencies to nativeBuildInputs, and drop perl as it no longer seems to be necessary (CMake is not looking for it any more).
This commit is contained in:
parent
908db0502b
commit
239e4c1f06
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, cmake, fetchurl, perl, python, flex, bison, qt4, CoreServices, libiconv }:
|
{ stdenv, cmake, fetchurl, python3, flex, bison, qt4, CoreServices, libiconv }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
|
||||||
@ -12,11 +12,15 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "bd9c0ec462b6a9b5b41ede97bede5458e0d7bb40d4cfa27f6f622eb33c59245d";
|
sha256 = "bd9c0ec462b6a9b5b41ede97bede5458e0d7bb40d4cfa27f6f622eb33c59245d";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
python3
|
||||||
|
flex
|
||||||
|
bison
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs =
|
buildInputs =
|
||||||
[ perl python flex bison ]
|
stdenv.lib.optional (qt4 != null) qt4
|
||||||
++ stdenv.lib.optional (qt4 != null) qt4
|
|
||||||
++ stdenv.lib.optional stdenv.isSunOS libiconv
|
++ stdenv.lib.optional stdenv.isSunOS libiconv
|
||||||
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreServices libiconv ];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user