Skip to content

Commit

Permalink
feat: Support Nix
Browse files Browse the repository at this point in the history
  • Loading branch information
l0b0 committed May 30, 2024
1 parent 37b6fd6 commit 4ee991e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
let
pkgs = import (
builtins.fetchTarball {
url = "https://github.com/nixos/nixpkgs/archive/7541ec60b6f2d38b76e057135bb5942b78d3370c.tar.gz";
sha256 = "1ndqfddqmfzd8lfq439kwbpm70qdblkdsw22qd16ibns8kq215cz";
}
) {};
in
pkgs.mkShell {
packages = [
pkgs.alejandra
pkgs.bashInteractive
pkgs.gdal
pkgs.gitFull
pkgs.nodejs
pkgs.s5cmd
];
}

0 comments on commit 4ee991e

Please sign in to comment.