From f2318ecfb622402364fdff5a4e8f66c1cb0cfb51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=B0=D0=BC=D1=98=D0=B0=D0=BD=20=D0=93=D0=B5=D0=BE?= =?UTF-8?q?=D1=80=D0=B3=D0=B8=D0=B5=D0=B2=D1=81=D0=BA=D0=B8?= Date: Sun, 5 Jan 2025 21:32:57 +0100 Subject: [PATCH] rqbit: expose the webui as passthru this can be useful for ex. for `nix develop .#rqbit.webui` or perhaps if one needs to server the static pages from another http server --- pkgs/by-name/rq/rqbit/package.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/by-name/rq/rqbit/package.nix b/pkgs/by-name/rq/rqbit/package.nix index 43dc1cf733db..f57afe0a066f 100644 --- a/pkgs/by-name/rq/rqbit/package.nix +++ b/pkgs/by-name/rq/rqbit/package.nix @@ -68,6 +68,8 @@ rustPlatform.buildRustPackage { doCheck = false; + passthru.webui = rqbit-webui; + meta = with lib; { description = "Bittorrent client in Rust"; homepage = "https://github.com/ikatson/rqbit";