nano-wallet: use python3

+4 -2
+4 -2
pkgs/applications/blockchains/nano-wallet/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, wrapQtAppsHook, boost, libGL 2 - , qtbase, python }: 2 + , qtbase, python3 }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 ··· 16 16 17 17 cmakeFlags = let 18 18 options = { 19 - PYTHON_EXECUTABLE = "${python}/bin/python"; 19 + PYTHON_EXECUTABLE = "${python3.interpreter}"; 20 20 NANO_SHARED_BOOST = "ON"; 21 21 BOOST_ROOT = boost; 22 22 RAIBLOCKS_GUI = "ON"; ··· 31 31 32 32 nativeBuildInputs = [ cmake pkg-config wrapQtAppsHook ]; 33 33 buildInputs = [ boost libGL qtbase ]; 34 + 35 + strictDeps = true; 34 36 35 37 buildPhase = '' 36 38 runHook preBuild