Merge pull request #146948 from fabaff/chopchop
chopchop: init at 1.0.0
This commit is contained in:
commit
f71a0a4d76
25
pkgs/tools/security/chopchop/default.nix
Normal file
25
pkgs/tools/security/chopchop/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "chopchop";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "michelin";
|
||||
repo = "ChopChop";
|
||||
rev = "v${version}";
|
||||
sha256 = "qSBQdcS6d0tctSHRbkY4T7s6Zj7xI2abaPUvNKh1M2E=";
|
||||
};
|
||||
|
||||
vendorSha256 = "UxWARWOFp8AYKEdiJwRZNwFrphgMTJSZjnvktTNOsgU=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "CLI to search for sensitive services/files/folders";
|
||||
homepage = "https://github.com/michelin/ChopChop";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -2521,6 +2521,8 @@ with pkgs;
|
||||
|
||||
chntpw = callPackage ../tools/security/chntpw { };
|
||||
|
||||
chopchop = callPackage ../tools/security/chopchop { };
|
||||
|
||||
cliphist = callPackage ../tools/wayland/cliphist { };
|
||||
|
||||
clipman = callPackage ../tools/wayland/clipman { };
|
||||
|
Loading…
Reference in New Issue
Block a user