kube3d: add a longDescription to provide detail and help searches

search.nixos.org was able to show me `deno` when searching for
"executable" which was in the longDescription
This commit is contained in:
06kellyjac 2020-10-04 15:35:35 +01:00
parent c36b5d5799
commit 7a03c0f5fe

View file

@ -36,7 +36,12 @@ buildGoModule rec {
meta = with stdenv.lib; {
homepage = "https://github.com/rancher/k3d";
description = "A helper to run k3s (Lightweight Kubernetes. 5 less than k8s) in a docker container";
longDescription = ''
k3s is the lightweight Kubernetes distribution by Rancher: rancher/k3s
k3d creates containerized k3s clusters. This means, that you can spin up a
multi-node k3s cluster on a single machine using docker.
'';
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ];