summary refs log tree commit diff
path: root/pkgs/development/tools/check/default.nix
blob: a28124828f90bd4548ec8751c5faf5d1ccfcc136 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{ buildGoPackage
, lib
, fetchFromGitLab
}:

buildGoPackage rec {
  pname = "check-unstable";
  version = "2018-09-12";
  rev = "88db195993f8e991ad402754accd0635490769f9";

  goPackagePath = "gitlab.com/opennota/check";

  src = fetchFromGitLab {
    inherit rev;

    owner = "opennota";
    repo = "check";
    sha256 = "1983xmdkgpqda4qz8ashc6xv1zg5jl4zly3w566grxc5sfxpgf0i";
  };

  goDeps = ./deps.nix;

  meta = with lib; {
    description = "A set of utilities for checking Go sources";
    homepage = "https://gitlab.com/opennota/check";
    license = licenses.gpl3;
    maintainers = with maintainers; [ kalbasit ];
    platforms = platforms.linux ++ platforms.darwin;
  };
}