This commit is contained in:
Alexander Heldt
2024-09-05 19:32:35 +02:00
parent a3c1de878a
commit 0bc9e2bd4a
23 changed files with 9920 additions and 895 deletions
+6 -1
View File
@@ -16,7 +16,11 @@
devShells = nixpkgs.lib.genAttrs systems (system:
let
pkgs = nixpkgs.legacyPackages.${system};
# pkgs = nixpkgs.legacyPackages.${system};
pkgs = import nixpkgs {
inherit system;
config.allowUnfree = true;
};
in
{
default = pkgs.mkShell {
@@ -26,6 +30,7 @@
pkgs.stlink
pkgs.gdb
pkgs.openocd
pkgs.stm32cubemx
pkgs.gdbgui
];
};