Initial commit

This commit is contained in:
Chandler Swift 2024-11-26 20:41:37 -06:00
commit 73ea6a9413
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
26 changed files with 58556 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
let
# nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import <nixpkgs> { config = {}; overlays = []; };
in
pkgs.mkShell {
buildInputs = with pkgs; [
gnumake
gdal
];
}