From 29c8d83f885622f813b36471fc43eb894bcda765 Mon Sep 17 00:00:00 2001 From: Bo Bakker Date: Mon, 8 May 2017 14:47:51 +0200 Subject: [PATCH] Restrict architectures to x86_64 --- pkgs/development/libraries/hpx/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ]; }; }