7 lines
99 B
Nix
7 lines
99 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
buildInputs = with pkgs; [
|
|
bc
|
|
wget
|
|
];
|
|
}
|