chopchop: init at 1.0.0
This commit is contained in:
parent
293e6f0ce5
commit
645cd20f66
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -2515,6 +2515,8 @@ with pkgs;
|
|||||||
|
|
||||||
chntpw = callPackage ../tools/security/chntpw { };
|
chntpw = callPackage ../tools/security/chntpw { };
|
||||||
|
|
||||||
|
chopchop = callPackage ../tools/security/chopchop { };
|
||||||
|
|
||||||
cliphist = callPackage ../tools/wayland/cliphist { };
|
cliphist = callPackage ../tools/wayland/cliphist { };
|
||||||
|
|
||||||
clipman = callPackage ../tools/wayland/clipman { };
|
clipman = callPackage ../tools/wayland/clipman { };
|
||||||
|
Loading…
Reference in New Issue
Block a user