2d98f7cff3
Now they use update-shell.nix auxiliar file.
19 lines
255 B
Nix
19 lines
255 B
Nix
{ pkgs ? import ../../../.. { } }:
|
|
|
|
# Ideally, pkgs points to default.nix file of Nixpkgs official tree
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
packages = [
|
|
bash
|
|
curl
|
|
gawk
|
|
gnugrep
|
|
gnused
|
|
jq
|
|
nix
|
|
nix-prefetch
|
|
nix-prefetch-scripts
|
|
];
|
|
}
|