mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-03 18:54:42 +00:00
fa2393f031
so that it can work even with an empty NIX_PATH
9 lines
97 B
Nix
9 lines
97 B
Nix
{ nixpkgs ? import ../../../.. { } }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
packages = [
|
|
pkgs.gh
|
|
];
|
|
}
|
|
|