fix: age build on x86-64_darwin fails

This commit is contained in:
Noah Masur 2023-11-07 09:22:24 -05:00
parent b471d0fa7a
commit 6babfae211

View File

@ -1,5 +1,9 @@
# Pin age because it is failing to build
# https://github.com/NixOS/nixpkgs/pull/265753
inputs: _final: prev: {
age = prev.age.overrideAttrs (old: { src = inputs.age; });
age = prev.age.overrideAttrs (old: {
src = inputs.age;
doCheck = false; # https://github.com/FiloSottile/age/issues/517
});
}