Initial commit

This commit is contained in:
Marius Drechsler 2025-03-04 12:06:47 +01:00
commit 2678107620
Signed by: marius
GPG key ID: 56D4131BA3104777
3 changed files with 97 additions and 0 deletions

33
flake.nix Normal file
View file

@ -0,0 +1,33 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
in {
devShell = pkgs.mkShell rec {
buildInputs = with pkgs; [
gnumake
gcc
gdb
cmake
cppcheck
python312Packages.pip
lcov
clang-tools
picotool
gcc-arm-embedded
libstdcxx5
];
};
packages.default = pkgs.mkDerivation {};
}
);
}