Initial commit
This commit is contained in:
commit
2678107620
3 changed files with 97 additions and 0 deletions
33
flake.nix
Normal file
33
flake.nix
Normal 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 {};
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue