16 lines
178 B
Nix
16 lines
178 B
Nix
{
|
|
pkgs,
|
|
selfPkgs,
|
|
...
|
|
}:
|
|
{
|
|
default = pkgs.mkShellNoCC {
|
|
inputsFrom = [ selfPkgs.local-content ];
|
|
|
|
packages = with pkgs; [
|
|
go
|
|
shellcheck
|
|
];
|
|
};
|
|
}
|