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:
parent
92e5745383
commit
2b23f30305
1 changed files with 2 additions and 2 deletions
|
@ -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 ];
|
||||||
|
|
Loading…
Add table
Reference in a new issue