Skip to content

Commit

Permalink
feat: Support Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
l0b0 committed Sep 16, 2024
1 parent 0d0a686 commit 299c93a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -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
];
}

0 comments on commit 299c93a

Please sign in to comment.