From 9d0e41430ac6daa89cf07d4cc4cf0763c29d8b5d Mon Sep 17 00:00:00 2001 From: Adam Stephens Date: Wed, 28 Aug 2024 15:09:00 -0400 Subject: [PATCH] kanidm: require big-parallel for building Build has timed out and been killed multiple times on hydra builds. This forces users to attempt to build it themselves, which they cannot due without sufficient resources. (cherry picked from commit b95b048fbe2c365a13b90ad4a567a49c88cb04f7) --- pkgs/by-name/ka/kanidm/package.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/by-name/ka/kanidm/package.nix b/pkgs/by-name/ka/kanidm/package.nix index 405fbfffd7813..13a20f05e70b1 100644 --- a/pkgs/by-name/ka/kanidm/package.nix +++ b/pkgs/by-name/ka/kanidm/package.nix @@ -100,6 +100,9 @@ rustPlatform.buildRustPackage rec { }; }; + # can take over 4 hours on 2 cores and needs 16GB+ RAM + requiredSystemFeatures = [ "big-parallel" ]; + meta = with lib; { changelog = "https://github.com/kanidm/kanidm/releases/tag/v${version}"; description = "A simple, secure and fast identity management platform";