Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at gcc-offload 27 lines 535 B view raw
1{ 2 lib, 3 fetchPypi, 4 buildPythonPackage, 5}: 6 7buildPythonPackage rec { 8 pname = "freertos-gdb"; 9 version = "1.0.3"; 10 11 src = fetchPypi { 12 inherit pname version; 13 hash = "sha256-5rkB01OdbD5Z4vA6dbqhWp5pGwqI1IlE4IE1dSdT1QE="; 14 }; 15 16 # Project has no tests 17 doCheck = false; 18 19 meta = with lib; { 20 description = "User-friendly view of FreeRTOS kernel objects in GDB"; 21 homepage = "https://github.com/espressif/freertos-gdb"; 22 license = licenses.asl20; 23 maintainers = with maintainers; [ 24 danc86 25 ]; 26 }; 27}