nixpkgs/pkgs/tools/text/vale/default.nix

27 lines
681 B
Nix
Raw Normal View History

2019-09-21 11:20:00 +02:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2018-03-10 23:28:02 +01:00
2019-09-21 11:20:00 +02:00
buildGoPackage rec {
2019-08-20 14:54:18 +02:00
pname = "vale";
version = "2.0.0";
2018-03-10 23:28:02 +01:00
2019-02-24 02:25:21 +01:00
subPackages = [ "." ];
2018-03-10 23:28:02 +01:00
src = fetchFromGitHub {
2018-04-27 05:20:30 +02:00
owner = "errata-ai";
2018-03-10 23:28:02 +01:00
repo = "vale";
2018-11-25 21:57:23 +01:00
rev = "v${version}";
sha256 = "068973ayd883kzkxl60lpammf3icjz090nw07kfccvhcf24x07bh";
2018-03-10 23:28:02 +01:00
};
2019-09-21 11:20:00 +02:00
goPackagePath = "github.com/errata-ai/vale";
2019-08-20 14:54:18 +02:00
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
2018-03-10 23:28:02 +01:00
meta = with stdenv.lib; {
homepage = "https://errata-ai.gitbook.io/vale/";
2019-01-18 13:05:24 +01:00
description = "A syntax-aware linter for prose built with speed and extensibility in mind";
2018-03-10 23:28:02 +01:00
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}