Skip to content

Commit

Permalink
earlybird: init at 1.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-h committed Apr 21, 2021
1 parent 9126104 commit 9e5f851
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkgs/tools/security/earlybird/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule {
pname = "earlybird";
version = "1.25.0";

src = fetchFromGitHub {
owner = "americanexpress";
repo = "earlybird";
# According to the GitHub repo, the latest version *is* 1.25.0, but they
# tagged it as "refs/heads/main-2"
rev = "4f365f1c02972dc0a68a196a262912d9c4325b21";
sha256 = "UZXHYBwBmb9J1HrE/htPZcKvZ+7mc+oXnUtzgBmBgN4=";
};

vendorSha256 = "oSHBR1EvK/1+cXqGNCE9tWn6Kd/BwNY3m5XrKCAijhA=";

meta = with lib; {
description = "A sensitive data detection tool capable of scanning source code repositories for passwords, key files, and more";
homepage = "https://github.com/americanexpress/earlybird";
license = licenses.asl20;
maintainers = teams.determinatesystems.members;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2315,6 +2315,8 @@ in

dyndnsc = callPackage ../applications/networking/dyndns/dyndnsc { };

earlybird = callPackage ../tools/security/earlybird { };

earlyoom = callPackage ../os-specific/linux/earlyoom { };

EBTKS = callPackage ../development/libraries/science/biology/EBTKS { };
Expand Down

0 comments on commit 9e5f851

Please sign in to comment.