summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-03-26 17:21:16 +0100
committerGitHub <noreply@github.com>2021-03-26 17:21:16 +0100
commitca0f54fe7e0375fea194c4e4297fb4a73e95d219 (patch)
tree10a88f1deb9273f8d7de6dfec8265f8943f4638e /pkgs/tools
parent8507a705bbd61053f255c5cde1371175b4ef39e5 (diff)
parent23ebec9f7b762a25964f2cc41daf7f59d943fa02 (diff)
Merge pull request #117701 from fabaff/pwncat
pwncat: init at 0.1.0
Diffstat (limited to 'pkgs/tools')
-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 000000000000..559dc8d8e3c4
--- /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 ];
+ };
+}