entropy: init at 1.0.7 (#317517)

This commit is contained in:
Arne Keller
2025-01-06 13:20:41 +01:00
committed by GitHub
+27
View File
@@ -0,0 +1,27 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "entropy";
version = "1.0.7";
src = fetchFromGitHub {
owner = "EwenQuim";
repo = "entropy";
rev = "v${version}";
hash = "sha256-Wj+WSJ2dt4mE0yoMSYIQVNVklBxaTXwP2XND4+76VCI=";
};
vendorHash = "sha256-rELkSYwqfMFX++w6e7/7suzPaB91GhbqFsLaYCeeIm4=";
meta = {
description = "Tool to scan your codebase for high entropy lines, which are often secrets";
homepage = "https://github.com/EwenQuim/entropy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ starsep ];
mainProgram = "entropy";
};
}