summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 09:27:27 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:09 +0200
commit8fccb64af1be556f436d86262c844d3276ecff6b (patch)
tree5811bce86dd07db0229fbe51f9d0f1d86365ab1d
parentecb85b0865a73da55a803b352464b75599c6c143 (diff)
downloadnixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar.gz
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar.bz2
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar.lz
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar.xz
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.tar.zst
nixpkgs-8fccb64af1be556f436d86262c844d3276ecff6b.zip
hpx: use python3
-rw-r--r--pkgs/development/libraries/hpx/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hpx/default.nix b/pkgs/development/libraries/hpx/default.nix
index da29c0e07e7..73d1eea988d 100644
--- a/pkgs/development/libraries/hpx/default.nix
+++ b/pkgs/development/libraries/hpx/default.nix
@@ -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 {
   pname = "hpx";
@@ -12,7 +12,9 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ boost hwloc gperftools ];
-  nativeBuildInputs = [ cmake pkg-config python ];
+  nativeBuildInputs = [ cmake pkg-config python3 ];
+
+  strictDeps = true;
 
   meta = {
     description = "C++ standard library for concurrency and parallelism";