cling: use python3

+4 -2
+4 -2
pkgs/development/interpreters/cling/default.nix
··· 1 1 { lib, stdenv 2 - , python 2 + , python3 3 3 , libffi 4 4 , git 5 5 , cmake ··· 38 38 chmod -R a+w ./tools/cling 39 39 ''; 40 40 41 - nativeBuildInputs = [ python git cmake ]; 41 + nativeBuildInputs = [ python3 git cmake ]; 42 42 buildInputs = [ libffi llvmPackages_5.llvm zlib ]; 43 + 44 + strictDeps = true; 43 45 44 46 cmakeFlags = [ 45 47 "-DLLVM_TARGETS_TO_BUILD=host;NVPTX"