summary refs log tree commit diff
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2017-05-09 22:33:13 +0100
committerGitHub <noreply@github.com>2017-05-09 22:33:13 +0100
commit8f72f9398180c498fa210acd039f806e15f14b95 (patch)
treebecdbf3ada59cb9dba3dcc49f601d673aafab395
parente69758567559e3dea4577921364328b6f98e4ed3 (diff)
parent29c8d83f885622f813b36471fc43eb894bcda765 (diff)
downloadnixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar.gz
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar.bz2
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar.lz
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar.xz
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.tar.zst
nixlib-8f72f9398180c498fa210acd039f806e15f14b95.zip
Merge pull request #25614 from bobakker/master
hpx: restrict architecture to x86_64
-rw-r--r--pkgs/development/libraries/hpx/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/hpx/default.nix b/pkgs/development/libraries/hpx/default.nix
index b4f6c32d16f5..452a159bb28c 100644
--- a/pkgs/development/libraries/hpx/default.nix
+++ b/pkgs/development/libraries/hpx/default.nix
@@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
     description = "C++ standard library for concurrency and parallelism";
     homepage = "https://github.com/STEllAR-GROUP/hpx";
     license = stdenv.lib.licenses.boost;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = [ "x86_64-linux" ]; # stdenv.lib.platforms.linux;
     maintainers = with stdenv.lib.maintainers; [ bobakker ];
   };
 }