mirror of https://github.com/dexidp/dex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
397 B
28 lines
397 B
{ pkgs, inputs, ... }: |
|
|
|
{ |
|
overlays = [ |
|
(final: prev: { |
|
go_1_25 = inputs.unstable.legacyPackages.${final.system}.go_1_25; |
|
}) |
|
]; |
|
|
|
languages = { |
|
go = { |
|
enable = true; |
|
package = pkgs.go_1_25; |
|
}; |
|
}; |
|
|
|
packages = with pkgs; [ |
|
just |
|
gnumake |
|
golangci-lint |
|
gotestsum |
|
protobuf |
|
protoc-gen-go |
|
protoc-gen-go-grpc |
|
kind |
|
dagger |
|
]; |
|
}
|
|
|