From 299c93ac2d2ed013fe5e0f0ef17bc07e8a8f59c7 Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Fri, 8 Mar 2024 14:24:09 +1300 Subject: [PATCH] feat: Support Nix --- shell.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..547ff56f --- /dev/null +++ b/shell.nix @@ -0,0 +1,17 @@ +let + pkgs = import (builtins.fetchTarball { + name = "nixos-unstable-2024-09-17"; + url = "https://github.com/nixos/nixpkgs/archive/345c263f2f53a3710abe117f28a5cb86d0ba4059.tar.gz"; + sha256 = "1llzyzw7a0jqdn7p3px0sqa35jg24v5pklwxdybwbmbyr2q8cf5j"; + }) { }; +in +pkgs.mkShell { + packages = [ + pkgs.alejandra + pkgs.bashInteractive + pkgs.gdal + pkgs.gitFull + pkgs.nodejs + pkgs.s5cmd + ]; +}