pwncat: init at 0.1.0
This commit is contained in:
parent
51be366f7e
commit
23ebec9f7b
|
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -29661,6 +29661,8 @@ in
|
||||||
|
|
||||||
pyupgrade = with python3Packages; toPythonApplication pyupgrade;
|
pyupgrade = with python3Packages; toPythonApplication pyupgrade;
|
||||||
|
|
||||||
|
pwncat = python3Packages.callPackage ../tools/security/pwncat { };
|
||||||
|
|
||||||
pwntools = with python3Packages; toPythonApplication pwntools;
|
pwntools = with python3Packages; toPythonApplication pwntools;
|
||||||
|
|
||||||
uae = callPackage ../misc/emulators/uae { };
|
uae = callPackage ../misc/emulators/uae { };
|
||||||
|
|
Loading…
Reference in New Issue