mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-10 14:14:20 +00:00
9 lines
97 B
Nix
9 lines
97 B
Nix
{ nixpkgs ? import ../../../.. { } }:
|
|
with nixpkgs;
|
|
mkShell {
|
|
packages = [
|
|
pkgs.gh
|
|
];
|
|
}
|
|
|