trufflehog 0 -> 1 attrpath: trufflehog Checking auto update branch... No auto update branch exists There might already be an open PR for this update: - [staging] go: upgrade bootstrap to 1.18 URL "https://api.github.com/repos/NixOS/nixpkgs/issues/241776" trufflehog 3.49.0 -> 3.51.0 https://github.com/trufflesecurity/trufflehog/releases attrpath: trufflehog Checking auto update branch... No auto update branch exists Old version 3.49.0" not present in master derivation file with contents: { lib , fetchFromGitHub , buildGoModule , testers , trufflehog }: buildGoModule rec { pname = "trufflehog"; version = "3.52.1"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; rev = "refs/tags/v${version}"; hash = "sha256-T3//AKSgnsdRWEzz+kh8rkHXBnJF9CThXervwAZ7Uog="; }; vendorHash = "sha256-RHNt9GxqWb4EDKg5of5s88iUmJPI2w7i5hPoCFMmnew="; ldflags = [ "-s" "-w" "-X=github.com/trufflesecurity/trufflehog/v3/pkg/version.BuildVersion=${version}" ]; # Test cases run git clone and require network access doCheck = false; postInstall = '' rm $out/bin/{generate,snifftest} ''; passthru = { tests.version = testers.testVersion { package = trufflehog; }; }; meta = with lib; { description = "Find credentials all over the place"; homepage = "https://github.com/trufflesecurity/trufflehog"; changelog = "https://github.com/trufflesecurity/trufflehog/releases/tag/v${version}"; license = with licenses; [ agpl3Only ]; maintainers = with maintainers; [ fab ]; }; }