{ lib, buildGoModule, fetchFromGitHub, makeBinaryWrapper, symlinkJoin, versionCheckHook, vale, valeStyles, }: buildGoModule rec { pname = "vale"; version = "3.9.6"; subPackages = [ "cmd/vale" ]; src = fetchFromGitHub { owner = "errata-ai"; repo = "vale"; rev = "v${version}"; hash = "sha256-KerHI0+0oHwKrAbE5JIi50+L20It9ubhhIaTJMKnh3I="; }; vendorHash = "sha256-ivHOUkX9a4mRsw/ruYr3CzVbAovYMGQI+ExmaB+lP5E="; ldflags = [ "-s" "-X main.version=${version}" ]; # Tests require network access doCheck = false; doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ]; 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 ]; }; }