nixpkgs/pkgs/development/tools/checkmate/default.nix

28 lines
590 B
Nix
Raw Normal View History

2021-09-03 18:08:05 +02:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "checkmate";
2021-12-24 04:31:32 +01:00
version = "0.5.3";
2021-09-03 18:08:05 +02:00
src = fetchFromGitHub {
owner = "adedayo";
repo = pname;
rev = "v${version}";
2021-12-24 04:31:32 +01:00
sha256 = "sha256-oBX1MSniVwXvq4Cy9uR3YqxaeSxeWg38oBlCiBy6z/8=";
2021-09-03 18:08:05 +02:00
};
2021-12-24 04:31:32 +01:00
vendorSha256 = "sha256-rlwph9oQXgesLHjrtD+H4zvT2ekTeqZFgRBjXoyFltM=";
2021-09-03 18:08:05 +02:00
subPackages = [ "." ];
meta = with lib; {
description = "Pluggable code security analysis tool";
homepage = "https://github.com/adedayo/checkmate";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}