lxd-ui: move to standalone by-name and format

This commit is contained in:
Adam Stephens 2024-04-01 23:25:42 -04:00
parent 080a4a27f2
commit 91a3a6a29b
No known key found for this signature in database
3 changed files with 10 additions and 10 deletions

View File

@ -139,7 +139,7 @@ in {
ui = {
enable = lib.mkEnableOption (lib.mdDoc "(experimental) LXD UI");
package = lib.mkPackageOption pkgs [ "lxd-unwrapped" "ui" ] { };
package = lib.mkPackageOption pkgs [ "lxd-ui" ] { };
};
};
};

View File

@ -1,11 +1,12 @@
{ lib
, stdenv
, fetchFromGitHub
, fetchYarnDeps
, nodejs
, prefetch-yarn-deps
, yarn
, nixosTests
{
lib,
stdenv,
fetchFromGitHub,
fetchYarnDeps,
nodejs,
prefetch-yarn-deps,
yarn,
nixosTests,
}:
stdenv.mkDerivation rec {

View File

@ -77,7 +77,6 @@ buildGoModule rec {
passthru.tests.lxd = nixosTests.lxd;
passthru.tests.lxd-to-incus = nixosTests.incus.lxd-to-incus;
passthru.ui = callPackage ./ui.nix { };
passthru.updateScript = gitUpdater {
url = "https://github.com/canonical/lxd.git";
rev-prefix = "lxd-";