diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..8c30043 --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +let + nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05"; + pkgs = import nixpkgs { config = {}; overlays = []; }; +in + +pkgs.mkShellNoCC { + packages = with pkgs; [ + gdal + python3 + # unzip + python311Packages.requests + ]; +}