Skip to content

Commit

Permalink
overlays: pin vale to v3.9.3
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Meyer <[email protected]>
  • Loading branch information
katexochen committed Jan 31, 2025
1 parent 372fa8a commit 4320411
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions overlays/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,24 @@ final: prev:
done
'';
});

# A change in vale popped up several hundred new findings, likely the bug
# described in https://github.com/errata-ai/vale/issues/955.
# Wait for the v3.9.5 release.
vale = prev.vale.overrideAttrs (
finalAttrs: _prevAttrs: {
version = "3.9.3";
src = final.fetchFromGitHub {
owner = "errata-ai";
repo = "vale";
rev = "v${finalAttrs.version}";
hash = "sha256-2IvVF/x8n1zvVXHAJLAFuDrw0Oi/RuQDa851SBlyRIk=";
};
vendorHash = "sha256-EWAgzb3ruxYqaP+owcyGDzNnkPDYp0ttHwCgNXuuTbk=";
ldflags = [
"-s"
"-X main.version=${finalAttrs.version}"
];
}
);
}

0 comments on commit 4320411

Please sign in to comment.