vale: init at 0.10.1

This commit is contained in:
Mario Rodas
2018-03-11 21:56:22 -05:00
parent 66998084c9
commit bde912b48b
3 changed files with 302 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
{ stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "vale-${version}";
version = "0.10.1";
rev = "${version}";
goPackagePath = "github.com/ValeLint/vale";
src = fetchFromGitHub {
inherit rev;
owner = "ValeLint";
repo = "vale";
sha256 = "1iyc9mny3nb6j3allj3szkiygc2v3gi7l7syq9ifjrm1wknk8wrf";
};
goDeps = ./deps.nix;
meta = with stdenv.lib; {
inherit (src.meta) homepage;
description = "Vale is an open source linter for prose";
license = licenses.mit;
maintainers = [ maintainers.marsam ];
};
}