1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00
nixpkgs/pkgs/tools/text/vale/default.nix

33 lines
772 B
Nix
Raw Normal View History

{ lib, stdenv, buildGoModule, fetchFromGitHub }:
2018-03-10 22:28:02 +00:00
buildGoModule rec {
2019-08-20 13:54:18 +01:00
pname = "vale";
2021-01-05 21:45:11 +00:00
version = "2.6.8";
2018-03-10 22:28:02 +00:00
2019-02-24 01:25:21 +00:00
subPackages = [ "." ];
outputs = [ "out" "data" ];
2019-02-24 01:25:21 +00:00
2018-03-10 22:28:02 +00:00
src = fetchFromGitHub {
2018-04-27 04:20:30 +01:00
owner = "errata-ai";
2018-03-10 22:28:02 +00:00
repo = "vale";
2018-11-25 20:57:23 +00:00
rev = "v${version}";
2021-01-05 21:45:11 +00:00
sha256 = "sha256-evvnIM8sd/eHpI2FYOlgjvGn8awTVc1f5QDIYAvhqmk=";
2018-03-10 22:28:02 +00:00
};
vendorSha256 = null;
postInstall = ''
mkdir -p $data/share/vale
cp -r styles $data/share/vale
'';
2019-08-20 13:54:18 +01:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
meta = with lib; {
homepage = "https://errata-ai.gitbook.io/vale/";
2019-01-18 12:05:24 +00:00
description = "A syntax-aware linter for prose built with speed and extensibility in mind";
2018-03-10 22:28:02 +00:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}