add .envrc/flake.nix for setting up automatic build environment under NixOS (#17)

This commit is contained in:
Jeremy O'Brien
2025-07-06 11:39:02 -04:00
committed by GitHub
parent ced820b60d
commit fa84c27ee6
4 changed files with 102 additions and 0 deletions

31
flake.nix Normal file
View File

@@ -0,0 +1,31 @@
{
description = "A basic flake with a shell";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.systems.url = "github:nix-systems/default";
inputs.flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
outputs =
{ nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.default = pkgs.mkShell {
packages = [
pkgs.bashInteractive
pkgs.gnumake
pkgs.emscripten
pkgs.gcc-arm-embedded
];
shellHook = ''
export EM_CACHE=$(pwd)/.emscripten_cache/
'';
};
}
);
}