1{ lib
2, buildGoModule
3, fetchFromGitLab
4}:
5
6buildGoModule rec {
7 pname = "check";
8 version = "unstable-2018-12-24";
9 rev = "ccaba434e62accd51209476ad093810bd27ec150";
10
11 src = fetchFromGitLab {
12 owner = "opennota";
13 repo = "check";
14 inherit rev;
15 sha256 = "sha256-u8U/62LZEn1ffwdGsUCGam4HAk7b2LetomCLZzHuuas=";
16 };
17
18 vendorHash = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo=";
19
20 meta = with lib; {
21 description = "A set of utilities for checking Go sources";
22 homepage = "https://gitlab.com/opennota/check";
23 license = licenses.gpl3;
24 maintainers = with maintainers; [ kalbasit ];
25 };
26}