about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2024-05-03 09:27:22 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2024-05-03 09:27:22 +0200
commitfa92d21f963c0525e9b6261632033ad49ab913f9 (patch)
tree30f1ab15fdcb4e4afbf689ff6edb2ed13a106b97 /pkgs/tools
parent86afd332e9be3280436d09d170d56fdc6ebf1f19 (diff)
quark-engine: refactor
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/quark-engine/default.nix13
1 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/tools/security/quark-engine/default.nix b/pkgs/tools/security/quark-engine/default.nix
index 0ec111917f91c..3734e938fd2c2 100644
--- a/pkgs/tools/security/quark-engine/default.nix
+++ b/pkgs/tools/security/quark-engine/default.nix
@@ -10,18 +10,21 @@ python3.pkgs.buildPythonApplication rec {
   pyproject = true;
 
   src = fetchFromGitHub {
-    owner = pname;
-    repo = pname;
+    owner = "quark-engine";
+    repo = "quark-engine";
     rev = "refs/tags/v${version}";
-    sha256 = "sha256-W1UeTiyyYZzxu3XQ/6VkTvEyqPWl1Du6QutuoPhaSfs=";
+    hash = "sha256-W1UeTiyyYZzxu3XQ/6VkTvEyqPWl1Du6QutuoPhaSfs=";
   };
 
-  nativeBuildInputs = with python3.pkgs; [
+  build-system = with python3.pkgs; [
     setuptools
+  ];
+
+  nativeBuildInputs = with python3.pkgs; [
     pythonRelaxDepsHook
   ];
 
-  propagatedBuildInputs = with python3.pkgs; [
+  dependencies = with python3.pkgs; [
     androguard
     click
     colorama