pwndbg: switch to python3
This commit is contained in:
parent
5e9922e800
commit
5db3428fa3
@ -1,4 +1,18 @@
|
|||||||
{ stdenv, fetchFromGitHub, pythonPackages, makeWrapper, gdb }:
|
{ stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, makeWrapper
|
||||||
|
, gdb
|
||||||
|
, future
|
||||||
|
, isort
|
||||||
|
, psutil
|
||||||
|
, pycparser
|
||||||
|
, pyelftools
|
||||||
|
, python-ptrace
|
||||||
|
, ROPGadget
|
||||||
|
, six
|
||||||
|
, unicorn
|
||||||
|
, pygments
|
||||||
|
, }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pwndbg-${version}";
|
name = "pwndbg-${version}";
|
||||||
@ -13,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
propagatedBuildInputs = with pythonPackages; [
|
propagatedBuildInputs = [
|
||||||
future
|
future
|
||||||
isort
|
isort
|
||||||
psutil
|
psutil
|
||||||
@ -24,7 +38,6 @@ stdenv.mkDerivation rec {
|
|||||||
six
|
six
|
||||||
unicorn
|
unicorn
|
||||||
pygments
|
pygments
|
||||||
enum34
|
|
||||||
];
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -4978,7 +4978,7 @@ with pkgs;
|
|||||||
|
|
||||||
pwnat = callPackage ../tools/networking/pwnat { };
|
pwnat = callPackage ../tools/networking/pwnat { };
|
||||||
|
|
||||||
pwndbg = callPackage ../development/tools/misc/pwndbg { };
|
pwndbg = python3Packages.callPackage ../development/tools/misc/pwndbg { };
|
||||||
|
|
||||||
pycangjie = pythonPackages.pycangjie;
|
pycangjie = pythonPackages.pycangjie;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user