about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSergei Trofimovich <slyich@gmail.com>2024-04-21 19:48:27 +0100
committerSergei Trofimovich <slyich@gmail.com>2024-04-21 19:48:27 +0100
commitc2e414fbee052ebf047fb9ae783233ffa4d86d09 (patch)
treec18969f5536b009cf551e2b2fc4fb072ae42e88f /pkgs
parentb8af6d814ded5e1f07be53f338b9d0e5ac397d64 (diff)
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?
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/by-name/lx/lxd-lts/package.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/lx/lxd-lts/package.nix b/pkgs/by-name/lx/lxd-lts/package.nix
index 67dda7437b8fd..ef61e0a7bcceb 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;