Add shell.nix

main
Chandler Swift 2024-07-06 20:20:32 -05:00
parent b428ecf7b6
commit 9e28ffe8b9
Signed by: chandlerswift
GPG Key ID: A851D929D52FB93F
1 changed files with 13 additions and 0 deletions

13
shell.nix 100644
View File

@ -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
];
}