python3Packages.gdb-pt-dump: init at 0-unstable-2024-04-01

This commit is contained in:
Moritz Sanft 2024-04-08 09:57:23 +02:00
parent 285085fa62
commit 72fd7cc737
No known key found for this signature in database
GPG Key ID: 335D28368B1DA615
1 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, poetry-core
}:
buildPythonPackage rec {
pname = "gdb-pt-dump";
version = "0-unstable-2024-04-01";
pyproject = true;
src = fetchFromGitHub {
owner = "martinradev";
repo = "gdb-pt-dump";
rev = "50227bda0b6332e94027f811a15879588de6d5cb";
hash = "sha256-yiP3KY1oDwhy9DmNQEht/ryys9vpgkFS+EJcSA6R+cI=";
};
build-system = [ poetry-core ];
pythonImportsCheck = [ "pt" ];
meta = with lib; {
description = "GDB script to enhance debugging of a QEMU-based virtual machine";
homepage = "https://github.com/martinradev/gdb-pt-dump";
license = licenses.mit;
maintainers = with maintainers; [ msanft ];
};
}