lawrencedeerclub/shell.nix

12 lines
222 B
Nix
Raw Normal View History

2024-11-26 20:41:37 -06:00
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
];
}