about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2024-03-28 09:53:08 +0100
committerGitHub <noreply@github.com>2024-03-28 09:53:08 +0100
commit65d3522d430c03221220d9bf7f4f071ec849451d (patch)
treeae3968e563b41000aa67feadc0c5a89ebc277bb1 /pkgs/tools
parentf4303a6dbf5737b0e99d2a47fc778e3c24f35e24 (diff)
parenta50a01003fd408574d11d987dcd934b7a091099b (diff)
Merge pull request #299457 from fabaff/ldeep-refactor
ldeep: refactor
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/ldeep/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/security/ldeep/default.nix b/pkgs/tools/security/ldeep/default.nix
index 92d5ff106b6cd..0b3a2b47df4cf 100644
--- a/pkgs/tools/security/ldeep/default.nix
+++ b/pkgs/tools/security/ldeep/default.nix
@@ -19,13 +19,13 @@ python3.pkgs.buildPythonApplication rec {
     "cryptography"
   ];
 
-  nativeBuildInputs = with python3.pkgs; [
+  build-system = with python3.pkgs; [
     cython
     pythonRelaxDepsHook
     setuptools
   ];
 
-  propagatedBuildInputs = with python3.pkgs; [
+  dependencies = with python3.pkgs; [
     commandparse
     cryptography
     dnspython
@@ -39,7 +39,7 @@ python3.pkgs.buildPythonApplication rec {
     tqdm
   ];
 
-  # no tests are present
+  # Project has no tests
   doCheck = false;
 
   pythonImportsCheck = [
@@ -48,10 +48,10 @@ python3.pkgs.buildPythonApplication rec {
 
   meta = with lib; {
     description = "In-depth LDAP enumeration utility";
-    mainProgram = "ldeep";
     homepage = "https://github.com/franc-pentest/ldeep";
     changelog = "https://github.com/franc-pentest/ldeep/releases/tag/${version}";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];
+    mainProgram = "ldeep";
   };
 }