about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-01-02 10:24:41 +0100
committerGitHub <noreply@github.com>2024-01-02 10:24:41 +0100
commitf1b28a69e1fe9552dd238a78586f76b3a89463a2 (patch)
tree5ed5e0fc39b43d2484dcf11d391ecdf5fc271bf1
parente3b3d7b3ef18657c68a76ef4c99b11e54bfa8f9d (diff)
parent57f8b6a77fccc0ad6ae630cc1d0ab7334f481e24 (diff)
downloadnixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar.gz
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar.bz2
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar.lz
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar.xz
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.tar.zst
nixlib-f1b28a69e1fe9552dd238a78586f76b3a89463a2.zip
Merge pull request #278129 from fabaff/theharvester-fix
theharvester: replace orjson with ujson
-rw-r--r--pkgs/tools/security/theharvester/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/security/theharvester/default.nix b/pkgs/tools/security/theharvester/default.nix
index 7628e14e3d0f..9e3d2fcdc4a4 100644
--- a/pkgs/tools/security/theharvester/default.nix
+++ b/pkgs/tools/security/theharvester/default.nix
@@ -10,7 +10,7 @@ python3.pkgs.buildPythonApplication rec {
 
   src = fetchFromGitHub {
     owner = "laramies";
-    repo = pname;
+    repo = "theharvester";
     rev = "refs/tags/${version}";
     hash = "sha256-tnCiI4bte2RSWSkEL2rwFz6WFjfRMMFiEBOvv3QMyos=";
   };
@@ -32,7 +32,7 @@ python3.pkgs.buildPythonApplication rec {
     fastapi
     lxml
     netaddr
-    orjson
+    ujson
     plotly
     pyppeteer
     python-dateutil