Files
aperture/flake.nix
Himadri Bhattacharjee 326c83aa88 chore: remove arduino deps
2025-07-28 12:29:29 +05:30

23 lines
478 B
Nix

{
description = "aperture devshell";
outputs =
{ nixpkgs, ... }:
let
forAllSystems =
f: nixpkgs.lib.genAttrs nixpkgs.lib.systems.flakeExposed (s: f nixpkgs.legacyPackages.${s});
in
{
devShells = forAllSystems (pkgs: {
default = pkgs.mkShell {
packages = with pkgs; [
stdenv.cc.cc
platformio
];
LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib";
};
});
};
}