Merge pull request #226420 from danc86/freertos-gdb

freertos-gdb: init at 1.0.2
This commit is contained in:
Masum Reza
2024-06-28 11:52:03 +05:30
committed by GitHub
2 changed files with 25 additions and 0 deletions
@@ -0,0 +1,23 @@
{ lib, pkg-config, fetchPypi, buildPythonPackage }:
buildPythonPackage rec {
pname = "freertos-gdb";
version = "1.0.2";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-o0ZoTy7OLVnrhSepya+MwaILgJSojs2hfmI86D9C3cs=";
};
# Project has no tests
doCheck = false;
meta = with lib; {
description = "User-friendly view of FreeRTOS kernel objects in GDB";
homepage = "https://github.com/espressif/freertos-gdb";
license = licenses.asl20;
maintainers = with maintainers; [
danc86
];
};
}
+2
View File
@@ -4580,6 +4580,8 @@ self: super: with self; {
freebox-api = callPackage ../development/python-modules/freebox-api { };
freertos-gdb = callPackage ../development/python-modules/freertos-gdb { };
freetype-py = callPackage ../development/python-modules/freetype-py { };
freezegun = callPackage ../development/python-modules/freezegun { };