mirror of
https://github.com/NotAShelf/batmon.git
synced 2025-01-19 08:22:29 +00:00
13 lines
107 B
Nix
13 lines
107 B
Nix
{
|
|
mkShellNoCC,
|
|
gopls,
|
|
go,
|
|
}:
|
|
mkShellNoCC {
|
|
name = "batmon";
|
|
packages = [
|
|
gopls
|
|
go
|
|
];
|
|
}
|