diff --git a/pkgs/container-hotplug/default.nix b/pkgs/container-hotplug/default.nix index f829499..10bb772 100644 --- a/pkgs/container-hotplug/default.nix +++ b/pkgs/container-hotplug/default.nix @@ -42,4 +42,11 @@ stdenv.mkDerivation rec { postInstall = '' wrapProgram $out/bin/container-hotplug --prefix PATH : "${lib.makeBinPath [runc]}" ''; + + meta = { + description = "Hot-plug devices into a container as they are plugged"; + homepage = "https://github.com/lowRISC/container-hotplug"; + license = lib.licenses.asl20; + mainProgram = "container-hotplug"; + }; }