This repository has been archived on 2022-04-27. You can view files and clone it, but cannot push or open issues/pull-requests.
aptpkg-pkgs/shell.nix

15 lines
255 B
Nix
Raw Normal View History

2021-08-03 11:40:54 -04:00
{ 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
];
}