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

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

29 lines
667 B
Nix
Raw Normal View History

2021-09-03 16:08:05 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "checkmate";
2022-12-24 12:29:34 +00:00
version = "0.8.4";
2021-09-03 16:08:05 +00:00
src = fetchFromGitHub {
owner = "adedayo";
repo = pname;
rev = "v${version}";
2022-12-25 08:47:08 +00:00
hash = "sha256-tgiZDTPIAYirPX6nGPEAt6BoYEC8uUJwT6zuHJqPF1w=";
2021-09-03 16:08:05 +00:00
};
2022-12-25 08:47:08 +00:00
vendorHash = "sha256-eL1fLJwzVpU9NqaAl5R/fbaqI3AnEkl6EuPkMTuY86w=";
2021-09-03 16:08:05 +00:00
subPackages = [ "." ];
meta = with lib; {
description = "Pluggable code security analysis tool";
homepage = "https://github.com/adedayo/checkmate";
2022-12-25 08:47:08 +00:00
changelog = "https://github.com/adedayo/checkmate/releases/tag/v${version}";
2021-09-03 16:08:05 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}