summary refs log tree commit diff
path: root/pkgs/development/libraries/igraph
diff options
context:
space:
mode:
authorCorbin <cds@corbinsimpson.com>2020-06-25 15:44:45 -0700
committerCorbin <cds@corbinsimpson.com>2020-06-25 15:44:45 -0700
commitdd284b9758abf0251b334549aacb819a0a137492 (patch)
tree0a32db22d444c92e7befcfc075c0bff6bb3b99e0 /pkgs/development/libraries/igraph
parent9409bd0ea644957e943abe3974b82db86bc10e14 (diff)
igraph: Only build and test x86_64-linux.
aarch64-linux tests fail on the community builder, so don't build there
until we have more evidence that failing tests are not a problem.
Diffstat (limited to 'pkgs/development/libraries/igraph')
-rw-r--r--pkgs/development/libraries/igraph/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/igraph/default.nix b/pkgs/development/libraries/igraph/default.nix
index 6b6924b7d415d..7f494e8bddc18 100644
--- a/pkgs/development/libraries/igraph/default.nix
+++ b/pkgs/development/libraries/igraph/default.nix
@@ -30,6 +30,8 @@ stdenv.mkDerivation rec {
     description = "The network analysis package";
     homepage = "https://igraph.org/";
     license = lib.licenses.gpl2;
+    # NB: Known to fail tests on aarch64.
+    platforms = [ "x86_64-linux" ];
     maintainers = [ lib.maintainers.MostAwesomeDude ];
   };
 }