1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-05-04 11:07:02 +00:00

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