This repository has been archived on 2022-04-27. You can view files and clone it, but cannot push or open issues/pull-requests.
|
{ 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
|
|
];
|
|
}
|