summary refs log tree commit diff
path: root/pkgs/tools/security/pwncat
diff options
context:
space:
mode:
authorcytopia <cytopia@everythingcli.org>2021-04-05 17:28:46 +0200
committercytopia <cytopia@everythingcli.org>2021-04-05 19:12:31 +0200
commita218db1f6693e515818c4f5784743161ce33381e (patch)
tree7034eee45b404b87457bc01f31d2411be5e9ddc2 /pkgs/tools/security/pwncat
parent026b9db487effe5208c78d703a97cca91e8d21e0 (diff)
downloadnixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar.gz
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar.bz2
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar.lz
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar.xz
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.tar.zst
nixpkgs-a218db1f6693e515818c4f5784743161ce33381e.zip
pwncat: 0.1.0 -> 0.1.1
Remove leading space in description
Diffstat (limited to 'pkgs/tools/security/pwncat')
-rw-r--r--pkgs/tools/security/pwncat/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/security/pwncat/default.nix b/pkgs/tools/security/pwncat/default.nix
index 559dc8d8e3c..67cfac9085f 100644
--- a/pkgs/tools/security/pwncat/default.nix
+++ b/pkgs/tools/security/pwncat/default.nix
@@ -5,18 +5,18 @@
 
 buildPythonApplication rec {
   pname = "pwncat";
-  version = "0.1.0";
+  version = "0.1.1";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "0sfdqphs0v3lj3vffda4w05r6sqir7qafa8lmlh0wr921wyiqwag";
+    sha256 = "62e625e9061f037cfca7b7455a4f7db4213c1d1302e73d4c475c63f924f1805f";
   };
 
   # Tests requires to start containers
   doCheck = false;
 
   meta = with lib; {
-    description = " TCP/UDP communication suite";
+    description = "TCP/UDP communication suite";
     homepage = "https://pwncat.org/";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ fab ];