mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 10:34:16 +00:00
8 lines
96 B
Nix
8 lines
96 B
Nix
|
{ nixpkgs ? import ../../../.. { } }:
|
||
|
with nixpkgs;
|
||
|
mkShell {
|
||
|
packages = [
|
||
|
pkgs.gh
|
||
|
];
|
||
|
}
|