commit a223085d4a515e3b285402c8e82c850da95429e5
parent c1847294b3ffedcf4cc7971c774f73dd354dafb7
Author: Emery Hemingway <ehmry@posteo.net>
Date: Wed, 11 Nov 2020 13:43:00 +0100
reform2-lpc-fw: add shell.nix
Nix users can enter a shell with the appropriate toolchain by issuing the
`nix-shell` command in the reform2-lpc-fw directory.
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/reform2-lpc-fw/shell.nix b/reform2-lpc-fw/shell.nix
@@ -0,0 +1,2 @@
+{ pkgs ? import <nixpkgs> { } }:
+pkgs.mkShell { buildInputs = with pkgs; [ stdenv gcc-arm-embedded ]; }