Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
31 lines
697 B
Nix
31 lines
697 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
poetry-core,
|
|
}:
|
|
|
|
buildPythonPackage {
|
|
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 ];
|
|
};
|
|
}
|