diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..2327b1d --- /dev/null +++ b/shell.nix @@ -0,0 +1,14 @@ +{ pkgs ? import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/78090fd990c0f2df96ee98d9e1da400248ef5af3.tar.gz" ) {} }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + bash + bzip2 + curl + dpkg + rsync + unzip + wget + zip + ]; +}