Unverified Commit 052a39df authored by Masum Reza's avatar Masum Reza Committed by GitHub
Browse files

Merge pull request #226420 from danc86/freertos-gdb

freertos-gdb: init at 1.0.2
parents 44677ecd 6c13e122
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ 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 −0
Original line number Diff line number Diff line
@@ -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 { };