3
0
Fork 0
forked from mirrors/nixpkgs

renderdoc: use default python3 (#58687)

This commit is contained in:
Robert Schütz 2019-04-01 21:44:33 +02:00 committed by GitHub
parent 92e5745383
commit 2b23f30305
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
{ stdenv, fetchFromGitHub, cmake, pkgconfig
, qtbase, qtx11extras, qtsvg, makeWrapper
, vulkan-loader, xorg
, python36, bison, pcre, automake, autoconf
, python3, bison, pcre, automake, autoconf
}:
let
custom_swig = fetchFromGitHub {
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
};
buildInputs = [
qtbase qtsvg xorg.libpthreadstubs xorg.libXdmcp qtx11extras vulkan-loader python36
qtbase qtsvg xorg.libpthreadstubs xorg.libXdmcp qtx11extras vulkan-loader python3
];
nativeBuildInputs = [ cmake makeWrapper pkgconfig bison pcre automake autoconf ];