nixpkgs/pkgs/applications/editors/vscode/update-shell.nix
AndersonTorres 2d98f7cff3 vscode: update the updaters!
Now they use update-shell.nix auxiliar file.
2022-02-18 08:25:22 -03:00

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
];
}