depot/third_party/nixpkgs/pkgs/applications/editors/vscode/update-shell.nix

20 lines
258 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
];
}