1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-09 03:56:01 +01:00

build(libstore): assert withAWS xor withCurlS3

This commit is contained in:
Bernardo Meurer Costa 2025-10-03 15:58:47 +00:00
parent 35b3557fe4
commit 7f22a40e3b
No known key found for this signature in database

View file

@ -34,6 +34,9 @@ let
inherit (lib) fileset;
in
assert lib.assertMsg (!withAWS || !withCurlS3)
"withAWS and withCurlS3 are mutually exclusive - cannot enable both S3 implementations simultaneously";
mkMesonLibrary (finalAttrs: {
pname = "nix-store";
inherit version;