From 7a03c0f5feceb6aaf1da2c48af172086730f0704 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Sun, 4 Oct 2020 15:35:35 +0100 Subject: [PATCH] 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 --- pkgs/applications/networking/cluster/kube3d/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/networking/cluster/kube3d/default.nix b/pkgs/applications/networking/cluster/kube3d/default.nix index ee0c67c1d51..68be8614cb0 100644 --- a/pkgs/applications/networking/cluster/kube3d/default.nix +++ b/pkgs/applications/networking/cluster/kube3d/default.nix @@ -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 ];