kel_project_template/shell.nix

14 lines
190 B
Nix
Raw Permalink Normal View History

2023-02-12 15:40:08 +01:00
with import <nixpkgs> {};
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShellNoCC {
name = "kel_project_template";
nativeBuildInputs = [
2023-02-19 22:30:28 +01:00
scons
2023-02-12 15:40:08 +01:00
];
buildInputs = [
python3
];
}