about summary refs log tree commit diff
path: root/pkgs/tools/security/pwncat
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-03-26 15:29:14 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2021-03-26 15:29:14 +0100
commit23ebec9f7b762a25964f2cc41daf7f59d943fa02 (patch)
treec3bf9c7b16146b93092851f532bd02d09082cb40 /pkgs/tools/security/pwncat
parent51be366f7e3e8eb4607a672bdba4f570b7df25ba (diff)
pwncat: init at 0.1.0
Diffstat (limited to 'pkgs/tools/security/pwncat')
-rw-r--r--pkgs/tools/security/pwncat/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/security/pwncat/default.nix b/pkgs/tools/security/pwncat/default.nix
new file mode 100644
index 0000000000000..559dc8d8e3c43
--- /dev/null
+++ b/pkgs/tools/security/pwncat/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonApplication
+, fetchPypi
+}:
+
+buildPythonApplication rec {
+  pname = "pwncat";
+  version = "0.1.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0sfdqphs0v3lj3vffda4w05r6sqir7qafa8lmlh0wr921wyiqwag";
+  };
+
+  # Tests requires to start containers
+  doCheck = false;
+
+  meta = with lib; {
+    description = " TCP/UDP communication suite";
+    homepage = "https://pwncat.org/";
+    license = with licenses; [ mit ];
+    maintainers = with maintainers; [ fab ];
+  };
+}