Add shell.nix
This commit is contained in:
parent
b428ecf7b6
commit
9e28ffe8b9
1 changed files with 13 additions and 0 deletions
13
shell.nix
Normal file
13
shell.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue