mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 17:23:34 +00:00
Merge pull request #136607 from fabaff/checkmate
checkmate: init at 0.4.1
This commit is contained in:
commit
6fa4e75f76
27
pkgs/development/tools/checkmate/default.nix
Normal file
27
pkgs/development/tools/checkmate/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ lib
|
||||||
|
, buildGoModule
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "checkmate";
|
||||||
|
version = "0.4.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "adedayo";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "15rf01q19q34qkafklpzig1x3c3p16fygswab1hnmzldg6jwaf3x";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "1n47k2ibamsv9ig84l2a4pri2pph3k0xlavbpmcv0lgbf4zd50z9";
|
||||||
|
|
||||||
|
subPackages = [ "." ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Pluggable code security analysis tool";
|
||||||
|
homepage = "https://github.com/adedayo/checkmate";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -4057,6 +4057,8 @@ with pkgs;
|
|||||||
|
|
||||||
checkbashisms = callPackage ../development/tools/misc/checkbashisms { };
|
checkbashisms = callPackage ../development/tools/misc/checkbashisms { };
|
||||||
|
|
||||||
|
checkmate = callPackage ../development/tools/checkmate { };
|
||||||
|
|
||||||
civetweb = callPackage ../development/libraries/civetweb { };
|
civetweb = callPackage ../development/libraries/civetweb { };
|
||||||
|
|
||||||
ckb-next = libsForQt5.callPackage ../tools/misc/ckb-next { };
|
ckb-next = libsForQt5.callPackage ../tools/misc/ckb-next { };
|
||||||
|
Loading…
Reference in New Issue
Block a user