From 7f37e0db123ba7fa1b01546a27cbfbf7787cedae Mon Sep 17 00:00:00 2001 From: Gary Guo Date: Mon, 13 May 2024 16:31:19 +0100 Subject: [PATCH] Add meta to container-hotplug --- pkgs/container-hotplug/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) 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"; + }; }