From 77223a34a17c1804c9c931b68cef990db91e906a Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 2 Feb 2024 08:25:16 +0100 Subject: cnspec: 10.0.3 -> 10.1.4 Diff: https://github.com/mondoohq/cnspec/compare/refs/tags/v10.0.3...v10.1.4 Changelog: https://github.com/mondoohq/cnspec/releases/tag/v10.1.4 --- pkgs/tools/security/cnspec/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkgs/tools/security') diff --git a/pkgs/tools/security/cnspec/default.nix b/pkgs/tools/security/cnspec/default.nix index b74290e14529c..43fcb0331254f 100644 --- a/pkgs/tools/security/cnspec/default.nix +++ b/pkgs/tools/security/cnspec/default.nix @@ -5,17 +5,17 @@ buildGoModule rec { pname = "cnspec"; - version = "10.0.3"; + version = "10.1.4"; src = fetchFromGitHub { owner = "mondoohq"; repo = "cnspec"; rev = "refs/tags/v${version}"; - hash = "sha256-UiEvy0NrdxEubaupGcpVQjqNJ1fKHrj/YA8wqvW0qoY="; + hash = "sha256-8dwsCDHBxJzGqexjtWsijZkERz69ew1ISeU86UALzMk="; }; proxyVendor = true; - vendorHash = "sha256-gUyQ/bnBVYYlp3a8iifafi5cvvrld6Lq80aRVRg11pY="; + vendorHash = "sha256-nrK0XwCrLFLgHWGtG0UrjqQPwoeOGWvxy+AnHZmkacM="; subPackages = [ "apps/cnspec" -- cgit 1.4.1 From 2466f8b163ae2aa77925c945b62b6af6312abf55 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 2 Feb 2024 09:00:38 +0100 Subject: trufflehog: 3.66.1 -> 3.66.3 Diff: https://github.com/trufflesecurity/trufflehog/compare/refs/tags/v3.66.1...v3.66.3 Changelog: https://github.com/trufflesecurity/trufflehog/releases/tag/v3.66.3 --- pkgs/tools/security/trufflehog/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pkgs/tools/security') diff --git a/pkgs/tools/security/trufflehog/default.nix b/pkgs/tools/security/trufflehog/default.nix index 6a4bdd737a989..d5c8957d31a4b 100644 --- a/pkgs/tools/security/trufflehog/default.nix +++ b/pkgs/tools/security/trufflehog/default.nix @@ -7,13 +7,13 @@ buildGoModule rec { pname = "trufflehog"; - version = "3.66.1"; + version = "3.66.3"; src = fetchFromGitHub { owner = "trufflesecurity"; repo = "trufflehog"; rev = "refs/tags/v${version}"; - hash = "sha256-NTBZldpocuFVJvI+wL74S3mj6waiNu1Hkncan4oqd8U="; + hash = "sha256-US94BFN2cS9QEtOkXP6QsDsP70JUCq9cu8qpSx8VraI="; }; vendorHash = "sha256-yhgNsiKh0sgVn0N1LqpWT1Utapc5DL+Ueposg+bAO5o="; -- cgit 1.4.1 From 071c0b6da6406a16c1a2f434bdccd5f54e9d6eb6 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 2 Feb 2024 09:59:10 +0100 Subject: commix: 3.8 -> 3.9 Diff: https://github.com/commixproject/commix/compare/refs/tags/v3.8...v3.9 Changelog: https://github.com/commixproject/commix/releases/tag/v3.9 --- pkgs/tools/security/commix/default.nix | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'pkgs/tools/security') diff --git a/pkgs/tools/security/commix/default.nix b/pkgs/tools/security/commix/default.nix index 94290619f0f3e..b4c16376d8dad 100644 --- a/pkgs/tools/security/commix/default.nix +++ b/pkgs/tools/security/commix/default.nix @@ -5,16 +5,26 @@ python3.pkgs.buildPythonApplication rec { pname = "commix"; - version = "3.8"; - format = "setuptools"; + version = "3.9"; + pyproject = true; src = fetchFromGitHub { owner = "commixproject"; - repo = pname; + repo = "commix"; rev = "refs/tags/v${version}"; - hash = "sha256-S/2KzZb3YUF0VJharWV/+7IG+r1EnB2sOveMpd1ryEI="; + hash = "sha256-HX+gEL9nmq9R1GFw8xQaa7kBmW7R0IepitM08bIf3vY="; }; + postPatch = '' + substituteInPlace setup.py \ + --replace-warn "-stable" "" + ''; + + + nativeBuildInputs = with python3.pkgs; [ + setuptools + ]; + postInstall = '' # Helper files are not handled by setup.py mkdir -p $out/${python3.sitePackages}/src/txt -- cgit 1.4.1