From 9e28ffe8b91b147b86374aff15b4eb11bb3336eb Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Sat, 6 Jul 2024 20:20:32 -0500 Subject: [PATCH] Add shell.nix --- shell.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 shell.nix 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 + ]; +}