Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

aerospike: Disables build on aarch64

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

+2 -2
+1
nixos/modules/services/databases/aerospike.nix
··· 43 43 44 44 package = mkOption { 45 45 default = pkgs.aerospike; 46 + defaultText = "pkgs.aerospike"; 46 47 type = types.package; 47 48 description = "Which Aerospike derivation to use"; 48 49 };
+1 -2
pkgs/servers/nosql/aerospike/default.nix
··· 30 30 description = "Flash-optimized, in-memory, NoSQL database"; 31 31 homepage = http://aerospike.com/; 32 32 license = licenses.agpl3; 33 - #platforms = [ "x86_64-linux" ]; # breaks eval of nixos manual for aarch64 34 - platforms = platforms.linux; 33 + platforms = [ "x86_64-linux" ]; 35 34 maintainers = with maintainers; [ kalbasit ]; 36 35 }; 37 36 }