From c6a146abe71ca12703235861bc8bbb42338b474d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 21 May 2023 09:48:19 +0200 Subject: [PATCH] theharvester: add changelog to meta --- pkgs/tools/security/theharvester/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/tools/security/theharvester/default.nix b/pkgs/tools/security/theharvester/default.nix index 751ba037ed2a..a683b048935e 100644 --- a/pkgs/tools/security/theharvester/default.nix +++ b/pkgs/tools/security/theharvester/default.nix @@ -10,8 +10,8 @@ python3.pkgs.buildPythonApplication rec { src = fetchFromGitHub { owner = "laramies"; repo = pname; - rev = version; - sha256 = "sha256-9W4xN+ZSNdR5NOnwohNrQVW8JSEKFyKxWTz012uiUm8="; + rev = "refs/tags/${version}"; + hash = "sha256-9W4xN+ZSNdR5NOnwohNrQVW8JSEKFyKxWTz012uiUm8="; }; propagatedBuildInputs = with python3.pkgs; [ @@ -30,6 +30,7 @@ python3.pkgs.buildPythonApplication rec { orjson plotly pyppeteer + python-dateutil pyyaml requests retrying @@ -61,6 +62,7 @@ python3.pkgs.buildPythonApplication rec { gathers emails, names, subdomains, IPs, and URLs using multiple public data sources. ''; homepage = "https://github.com/laramies/theHarvester"; + changelog = "https://github.com/laramies/theHarvester/releases/tag/${version}"; maintainers = with maintainers; [ c0bw3b treemo ]; license = licenses.gpl2Only; };