Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7eeb02d47b38
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 71c49d5796a9
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 25, 2018

  1. vale: 1.0.3 -> 1.2.6

    marsam committed Nov 25, 2018
    Copy the full SHA
    3a43ca1 View commit details
  2. Merge pull request #51046 from marsam/feature/update-vale

    vale: 1.0.3 -> 1.2.6
    c0bw3b authored Nov 25, 2018
    Copy the full SHA
    71c49d5 View commit details
Showing with 4 additions and 5 deletions.
  1. +4 −5 pkgs/tools/text/vale/default.nix
9 changes: 4 additions & 5 deletions pkgs/tools/text/vale/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,21 @@

buildGoPackage rec {
name = "vale-${version}";
version = "1.0.3";
rev = "v${version}";
version = "1.2.6";

goPackagePath = "github.com/errata-ai/vale";

src = fetchFromGitHub {
inherit rev;
owner = "errata-ai";
repo = "vale";
sha256 = "132zzgry19alcdn3m3q62sp2lm3yxc4kil12lm309jl7b3n0850h";
rev = "v${version}";
sha256 = "1mhynasikncwz9dkk9z27qvwk03j7q0vx0wjnqg69pd97lgrp7zp";
};

goDeps = ./deps.nix;

meta = with stdenv.lib; {
homepage = https://errata.ai/vale/getting-started/;
homepage = https://errata-ai.github.io/vale/;
description = "Vale is an open source linter for prose";
license = licenses.mit;
maintainers = [ maintainers.marsam ];