From c2e414fbee052ebf047fb9ae783233ffa4d86d09 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sun, 21 Apr 2024 19:48:27 +0100 Subject: [PATCH] lxd: drop undefined `ui` attribute From what I can see `lxd-unwrapped-lts` does not define `ui` attribute. As a result `lxd.ui` fails the eval as: $ nix build --no-link -f. lxd.ui trace: warning: lxd has been renamed to lxd-lts error: attribute 'ui' missing at pkgs/by-name/lx/lxd-lts/package.nix:144:39: 143| passthru = { 144| inherit (lxd-unwrapped-lts) tests ui; | ^ 145| }; Did you mean one of go or out? --- pkgs/by-name/lx/lxd-lts/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/lx/lxd-lts/package.nix b/pkgs/by-name/lx/lxd-lts/package.nix index 67dda7437b8f..ef61e0a7bcce 100644 --- a/pkgs/by-name/lx/lxd-lts/package.nix +++ b/pkgs/by-name/lx/lxd-lts/package.nix @@ -141,7 +141,7 @@ symlinkJoin { ''; passthru = { - inherit (lxd-unwrapped-lts) tests ui; + inherit (lxd-unwrapped-lts) tests; }; inherit (lxd-unwrapped-lts) meta pname version;