Merge pull request #211 from nix-community/joerg-ci

change type of buildRetries to int that allows 0 values
This commit is contained in:
Jörg Thalheim 2024-07-09 12:05:47 +02:00 committed by GitHub
commit 8da399b788
Failed to generate hash of commit

View file

@ -76,7 +76,7 @@ in
'';
};
buildRetries = lib.mkOption {
type = lib.types.ints.positive;
type = lib.types.int;
default = 1;
description = "Number of times a build is retried";
};