clasp: use python3

This commit is contained in:
Frederik Rietdijk 2021-07-27 15:35:47 +02:00
parent e029eba1ca
commit 250544f209

View File

@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub, fetchFromGitLab { lib, stdenv, fetchFromGitHub, fetchFromGitLab
, llvmPackages , llvmPackages
, cmake, boehmgc, gmp, zlib, ncurses, boost, libelf , cmake, boehmgc, gmp, zlib, ncurses, boost, libelf
, python, git, sbcl , python3, git, sbcl
, wafHook , wafHook
}: }:
let let
@ -67,7 +67,7 @@ stdenv.mkDerivation rec {
fetchSubmodules = true; fetchSubmodules = true;
}; };
nativeBuildInputs = [ cmake python git sbcl wafHook ] ++ nativeBuildInputs = [ cmake python3 git sbcl wafHook ] ++
(with llvmPackages; [ llvm clang ]); (with llvmPackages; [ llvm clang ]);
buildInputs = with llvmPackages; buildInputs = with llvmPackages;