fa2393f031
so that it can work even with an empty NIX_PATH
8 lines
97 B
Nix
8 lines
97 B
Nix
{ nixpkgs ? import ../../../.. { } }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
packages = [
|
|
pkgs.gh
|
|
];
|
|
}
|
|
|