evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / go / go-check / package.nix
blob1de7a49f3180e5fb841ee1c2b777008a92fd93d9
1 { lib
2 , buildGoModule
3 , fetchFromGitLab
4 }:
6 buildGoModule rec {
7   pname = "check";
8   version = "unstable-2018-12-24";
9   rev = "ccaba434e62accd51209476ad093810bd27ec150";
11   src = fetchFromGitLab {
12     owner = "opennota";
13     repo = "check";
14     inherit rev;
15     hash = "sha256-u8U/62LZEn1ffwdGsUCGam4HAk7b2LetomCLZzHuuas=";
16   };
18   vendorHash = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo=";
20   meta = with lib; {
21     description = "Set of utilities for checking Go sources";
22     homepage = "https://gitlab.com/opennota/check";
23     license = licenses.gpl3;
24     maintainers = with maintainers; [ kalbasit ];
25   };