mirror of
https://github.com/apricote/hcloud-upload-image.git
synced 2026-01-13 21:31:03 +00:00
10 lines
123 B
Nix
10 lines
123 B
Nix
|
|
{pkgs ? import <nixpkgs> {}}:
|
||
|
|
pkgs.mkShell {
|
||
|
|
buildInputs = with pkgs; [
|
||
|
|
go
|
||
|
|
gopls
|
||
|
|
gotools
|
||
|
|
go-tools
|
||
|
|
];
|
||
|
|
}
|