From d26041021d74a5425970115790989bcef92b337d Mon Sep 17 00:00:00 2001 From: Aaron Jheng Date: Sat, 15 Jul 2023 06:43:05 +0000 Subject: [PATCH 1/2] scilla: 1.2.4 -> 1.2.7 --- pkgs/tools/security/scilla/default.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/security/scilla/default.nix b/pkgs/tools/security/scilla/default.nix index c19afe300161..3ad2b03fd42d 100644 --- a/pkgs/tools/security/scilla/default.nix +++ b/pkgs/tools/security/scilla/default.nix @@ -5,16 +5,21 @@ buildGoModule rec { pname = "scilla"; - version = "1.2.4"; + version = "1.2.7"; src = fetchFromGitHub { owner = "edoardottt"; repo = pname; rev = "v${version}"; - sha256 = "sha256-8ZRYgQ4xME71vlO0nKnxiCqeju0G4SwgEXnUol1jQxk="; + hash = "sha256-gZuNXQaxHJYLsEaOpNYo7ybg3f0GhkpiaLrex5lkDu4="; }; - vendorSha256 = "sha256-Y4Zi0Hy6ydGxLTohgJGF3L9O+79z+3t+4ZA64otCJpE="; + vendorHash = "sha256-bVGmleuOJzi/Sz7MJlnQuJsDgRWuwieLUx8hcyKkWXI="; + + checkFlags = [ + # requires network access + "-skip=TestIPToHostname" + ]; meta = with lib; { description = "Information gathering tool for DNS, ports and more"; From ea7c05b9837ecaa5b811dab3958e8878dca32304 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 20 Aug 2023 18:23:25 +0200 Subject: [PATCH 2/2] scilla: add changelog to meta --- pkgs/tools/security/scilla/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/security/scilla/default.nix b/pkgs/tools/security/scilla/default.nix index 3ad2b03fd42d..79f743ea0ce8 100644 --- a/pkgs/tools/security/scilla/default.nix +++ b/pkgs/tools/security/scilla/default.nix @@ -10,7 +10,7 @@ buildGoModule rec { src = fetchFromGitHub { owner = "edoardottt"; repo = pname; - rev = "v${version}"; + rev = "refs/tags/v${version}"; hash = "sha256-gZuNXQaxHJYLsEaOpNYo7ybg3f0GhkpiaLrex5lkDu4="; }; @@ -24,6 +24,7 @@ buildGoModule rec { meta = with lib; { description = "Information gathering tool for DNS, ports and more"; homepage = "https://github.com/edoardottt/scilla"; + changelog = "https://github.com/edoardottt/scilla/releases/tag/v${version}"; license = with licenses; [ gpl3Plus ]; maintainers = with maintainers; [ fab ]; };