1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/by-name/va/vale/package.nix

66 lines
1.5 KiB
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
makeBinaryWrapper,
symlinkJoin,
vale,
valeStyles,
}:
buildGoModule rec {
pname = "vale";
version = "3.9.0";
subPackages = [ "cmd/vale" ];
src = fetchFromGitHub {
owner = "errata-ai";
repo = "vale";
rev = "v${version}";
hash = "sha256-4zDngF2K6Fsn/Ml4rhHQxDXOD7meXePoqZ9+XPrHO0g=";
};
vendorHash = "sha256-EWAgzb3ruxYqaP+owcyGDzNnkPDYp0ttHwCgNXuuTbk=";
ldflags = [
"-s"
"-X main.version=${version}"
];
# Tests require network access
doCheck = false;
passthru.withStyles =
selector:
symlinkJoin {
name = "vale-with-styles-${vale.version}";
paths = [ vale ] ++ selector valeStyles;
nativeBuildInputs = [ makeBinaryWrapper ];
postBuild = ''
wrapProgram "$out/bin/vale" \
--set VALE_STYLES_PATH "$out/share/vale/styles/"
'';
meta = {
inherit (vale.meta) mainProgram;
};
};
meta = {
description = "Syntax-aware linter for prose built with speed and extensibility in mind";
longDescription = ''
Vale in Nixpkgs offers the helper `.withStyles` allow you to install it
predefined styles:
```nix
vale.withStyles (s: [ s.alex s.google ])
```
'';
homepage = "https://vale.sh/";
changelog = "https://github.com/errata-ai/vale/releases/tag/v${version}";
mainProgram = "vale";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pbsds ];
};
}