nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

at devShellTools-shell 17 lines 288 B view raw
1{ 2 pkgs ? import ../../../../../.. { }, 3}: 4 5# Ideally, pkgs points to default.nix file of Nixpkgs official tree 6with pkgs; 7 8mkShell { 9 inputsFrom = [ 10 (import ../../update-shell.nix { inherit pkgs; }) 11 ]; 12 packages = [ 13 nix-prefetch-github 14 nurl 15 prefetch-npm-deps 16 ]; 17}