1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "checkmate";
8 version = "0.8.2";
9
10 src = fetchFromGitHub {
11 owner = "adedayo";
12 repo = pname;
13 rev = "v${version}";
14 sha256 = "sha256-v9xVJFX3YJQU9z9L7dhy0S1FvpWoDad36Lq3w4VW0xA=";
15 };
16
17 vendorSha256 = "sha256-8/EGoY3+th34gAACDoEHgwhUFmyyKecnQP/WTe56iCQ=";
18
19 subPackages = [ "." ];
20
21 meta = with lib; {
22 description = "Pluggable code security analysis tool";
23 homepage = "https://github.com/adedayo/checkmate";
24 license = licenses.bsd3;
25 maintainers = with maintainers; [ fab ];
26 };
27}