aerospike: Disables build on aarch64

The issue with its inclusion in the manual has been side-stepped by
matching on the platforms in supports.
This commit is contained in:
Samuel Dionne-Riel 2018-12-09 14:46:13 -05:00
parent e85c1f5868
commit abcb25bd8d
2 changed files with 2 additions and 2 deletions

View File

@ -43,6 +43,7 @@ in
package = mkOption {
default = pkgs.aerospike;
defaultText = "pkgs.aerospike";
type = types.package;
description = "Which Aerospike derivation to use";
};

View File

@ -30,8 +30,7 @@ stdenv.mkDerivation rec {
description = "Flash-optimized, in-memory, NoSQL database";
homepage = http://aerospike.com/;
license = licenses.agpl3;
#platforms = [ "x86_64-linux" ]; # breaks eval of nixos manual for aarch64
platforms = platforms.linux;
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ kalbasit ];
};
}