aerospike: Disables build on aarch64

The issue with its inclusion in the manual has been side-stepped by
matching on the platforms in supports.

Changed files
+2 -2
nixos
modules
services
databases
pkgs
servers
nosql
aerospike
+1
nixos/modules/services/databases/aerospike.nix
···
package = mkOption {
default = pkgs.aerospike;
type = types.package;
description = "Which Aerospike derivation to use";
};
···
package = mkOption {
default = pkgs.aerospike;
+
defaultText = "pkgs.aerospike";
type = types.package;
description = "Which Aerospike derivation to use";
};
+1 -2
pkgs/servers/nosql/aerospike/default.nix
···
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;
maintainers = with maintainers; [ kalbasit ];
};
}
···
description = "Flash-optimized, in-memory, NoSQL database";
homepage = http://aerospike.com/;
license = licenses.agpl3;
+
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ kalbasit ];
};
}