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