15 lines
255 B
Nix
15 lines
255 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|