Add shell.nix

main
earnest ma 2021-08-03 11:40:54 -04:00
parent 2824a9f1d9
commit 1602f34b84
Signed by: earnest ma
GPG Key ID: A343F43342EB6E2A
1 changed files with 14 additions and 0 deletions

14
shell.nix Normal file
View File

@ -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
];
}