Skip to content

Instantly share code, notes, and snippets.

@cmacrae
Created August 8, 2017 09:48
Show Gist options
  • Save cmacrae/069fef889ff752f6f7fe7176a38e7e2c to your computer and use it in GitHub Desktop.
Save cmacrae/069fef889ff752f6f7fe7176a38e7e2c to your computer and use it in GitHub Desktop.
Go Meta Linter: Nix
{ stdenv, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
buildGoPackage rec {
name = "gometalinter-v1-unstable-${version}";
version = "2017-03-22";
rev = "bae2f1293d092fd8167939d5108d1b025eaef9de";
goPackagePath = "gopkg.in/alecthomas/gometalinter.v1";
src = fetchgit {
inherit rev;
url = "https://gopkg.in/alecthomas/gometalinter.v1";
sha256 = "1sn9j6a3caqpq1pf8wy65018khpp66kxlg69ah1nc2jpdh7ckw04";
};
goDeps = [];
meta = {
description = "Metalinter for Go";
longDescription = "Concurrently run Go lint tools and normalise their output";
homepage = "https://github.com/alecthomas/gometalinter";
downloadPage = "https://gopkg.in/alecthomas/gometalinter.v1";
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment