hpx: use python3
This commit is contained in:
parent
ecb85b0865
commit
8fccb64af1
|
@ -1,4 +1,4 @@
|
||||||
{ lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python }:
|
{ lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python3 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "hpx";
|
pname = "hpx";
|
||||||
|
@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ boost hwloc gperftools ];
|
buildInputs = [ boost hwloc gperftools ];
|
||||||
nativeBuildInputs = [ cmake pkg-config python ];
|
nativeBuildInputs = [ cmake pkg-config python3 ];
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "C++ standard library for concurrency and parallelism";
|
description = "C++ standard library for concurrency and parallelism";
|
||||||
|
|
Loading…
Reference in New Issue