site source

This commit is contained in:
wi11-holdsworth 2025-01-27 22:16:57 +11:00
parent 6076d5a2b4
commit 5fe2440107
24 changed files with 328 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
gnumake
envsubst
python312Packages.mat2
];
}