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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
590 B
Nix
Raw Normal View History

2021-09-03 16:08:05 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "checkmate";
2022-05-27 05:55:02 +00:00
version = "0.6.9";
2021-09-03 16:08:05 +00:00
src = fetchFromGitHub {
owner = "adedayo";
repo = pname;
rev = "v${version}";
2022-05-27 05:55:02 +00:00
sha256 = "sha256-Zs8vyPD1BpjA5EXzeKyfv9CzhD0iIp1LNLlqCp+zpaY=";
2021-09-03 16:08:05 +00:00
};
2022-05-27 05:55:02 +00:00
vendorSha256 = "sha256-Wln6vf9FJ1VJgdll5a7QS+M6PCM151EB8aOb9fFkSXo=";
2021-09-03 16:08:05 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "Pluggable code security analysis tool";
homepage = "https://github.com/adedayo/checkmate";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}