Files
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

31 lines
695 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 = {
description = "GDB script to enhance debugging of a QEMU-based virtual machine";
homepage = "https://github.com/martinradev/gdb-pt-dump";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ msanft ];
};
}