cdk-go: init at 1.0.4
This commit is contained in:
parent
807370df94
commit
a1128e9f25
2 changed files with 30 additions and 0 deletions
28
pkgs/tools/security/cdk-go/default.nix
Normal file
28
pkgs/tools/security/cdk-go/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cdk-go";
|
||||
version = "1.0.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cdk-team";
|
||||
repo = "CDK";
|
||||
rev = "v${version}";
|
||||
sha256 = "1zz9jaz5nlvs52nqlaisivrnz7lz8g48qii0n2s1783a5jpkk9ml";
|
||||
};
|
||||
|
||||
vendorSha256 = "0sn709mbhfymwwfdqc5xpdz2lgimqx3xycfmq24vbfmlh8wqcs7l";
|
||||
|
||||
# At least one test is outdated
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Container penetration toolkit";
|
||||
homepage = "https://github.com/cdk-team/CDK";
|
||||
license = with licenses; [ gpl2Only ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -15444,6 +15444,8 @@ with pkgs;
|
|||
|
||||
cdk = callPackage ../development/libraries/cdk {};
|
||||
|
||||
cdk-go = callPackage ../tools/security/cdk-go {};
|
||||
|
||||
cdo = callPackage ../development/libraries/cdo { };
|
||||
|
||||
cimg = callPackage ../development/libraries/cimg { };
|
||||
|
|
Loading…
Reference in a new issue