Files
film-scanner/firmware/shell.nix

11 lines
152 B
Nix

{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [
pkgs.stdenv
# keep this line if you use bash
pkgs.bashInteractive
];
}