biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / check / default.nix
blob8f068c678896d06936c6c8f55e1f216e1b6e3bc3
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     sha256 = "sha256-u8U/62LZEn1ffwdGsUCGam4HAk7b2LetomCLZzHuuas=";
16   };
18   vendorHash = "sha256-DyysiVYFpncmyCzlHIOEtWlCMpm90AC3gdItI9WinSo=";
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   };