about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2022-12-14 21:35:57 +0000
committerGitHub <noreply@github.com>2022-12-14 21:35:57 +0000
commita16aef026cbe74da65e2351ac175e824e5293107 (patch)
tree82fc0433ce48e0473852759d047c3149e87ee9b2 /pkgs
parent9fe54ff8fd1de2edd7d16d778412b7ac8fd54c32 (diff)
parent1148b1ec896b95b16bd54a0f137376896ba2f6c5 (diff)
downloadnixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar.gz
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar.bz2
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar.lz
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar.xz
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.tar.zst
nixlib-a16aef026cbe74da65e2351ac175e824e5293107.zip
Merge pull request #206039 from r-ryantm/auto-update/pwninit
pwninit: 3.2.0 -> 3.3.0
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/misc/pwninit/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/tools/misc/pwninit/default.nix b/pkgs/development/tools/misc/pwninit/default.nix
index 7d3808f554c0..dcea47449cab 100644
--- a/pkgs/development/tools/misc/pwninit/default.nix
+++ b/pkgs/development/tools/misc/pwninit/default.nix
@@ -10,20 +10,20 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "pwninit";
-  version = "3.2.0";
+  version = "3.3.0";
 
   src = fetchFromGitHub {
     owner = "io12";
     repo = "pwninit";
     rev = version;
-    sha256 = "sha256-XKDYJH2SG3TkwL+FN6rXDap8la07icR0GPFiYcnOHeI=";
+    sha256 = "sha256-Tskbwavr+MFa8wmwaFGe7o4/6ZpZqczzwOnqFR66mmM=";
   };
 
   buildInputs = [ openssl xz ] ++ lib.optionals stdenv.isDarwin [ Security ];
   nativeBuildInputs = [ pkg-config ];
   doCheck = false; # there are no tests to run
 
-  cargoSha256 = "sha256-2HCHiU309hbdwohUKVT3TEfGvOfxQWtEGj7FIS8OS7s=";
+  cargoSha256 = "sha256-LPypmFeF9NZOX1ogpIqc++Pun7pInKzpxYiGUvSUcso=";
 
   meta = {
     description = "Automate starting binary exploit challenges";