mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-04 14:21:02 +03:00
lxd: rename to lxd-lts
This commit is contained in:
parent
20ab45931c
commit
893be2587b
@ -33,7 +33,7 @@ in {
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
package = lib.mkPackageOption pkgs "lxd" { };
|
package = lib.mkPackageOption pkgs "lxd-lts" { };
|
||||||
|
|
||||||
lxcPackage = lib.mkPackageOption pkgs "lxc" {
|
lxcPackage = lib.mkPackageOption pkgs "lxc" {
|
||||||
extraDescription = ''
|
extraDescription = ''
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
lib,
|
lib,
|
||||||
lxd-unwrapped,
|
lxd-unwrapped-lts,
|
||||||
linkFarm,
|
linkFarm,
|
||||||
makeWrapper,
|
makeWrapper,
|
||||||
stdenv,
|
stdenv,
|
||||||
@ -128,9 +128,9 @@ let
|
|||||||
];
|
];
|
||||||
in
|
in
|
||||||
symlinkJoin {
|
symlinkJoin {
|
||||||
name = "lxd-${lxd-unwrapped.version}";
|
name = "lxd-${lxd-unwrapped-lts.version}";
|
||||||
|
|
||||||
paths = [ lxd-unwrapped ];
|
paths = [ lxd-unwrapped-lts ];
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
@ -141,8 +141,8 @@ symlinkJoin {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
inherit (lxd-unwrapped) tests ui;
|
inherit (lxd-unwrapped-lts) tests ui;
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit (lxd-unwrapped) meta pname version;
|
inherit (lxd-unwrapped-lts) meta pname version;
|
||||||
}
|
}
|
@ -18,7 +18,8 @@
|
|||||||
}:
|
}:
|
||||||
|
|
||||||
buildGo122Module rec {
|
buildGo122Module rec {
|
||||||
pname = "lxd-unwrapped";
|
pname = "lxd-unwrapped-lts";
|
||||||
|
# major/minor are used in updateScript to pin to LTS
|
||||||
version = "5.21.0";
|
version = "5.21.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
@ -93,7 +94,7 @@ buildGo122Module rec {
|
|||||||
passthru.tests.lxd-to-incus = nixosTests.incus.lxd-to-incus;
|
passthru.tests.lxd-to-incus = nixosTests.incus.lxd-to-incus;
|
||||||
passthru.updateScript = gitUpdater {
|
passthru.updateScript = gitUpdater {
|
||||||
url = "https://github.com/canonical/lxd.git";
|
url = "https://github.com/canonical/lxd.git";
|
||||||
rev-prefix = "lxd-";
|
rev-prefix = "lxd-5.21";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
@ -1,5 +1,5 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv
|
||||||
, raft-canonical, sqlite, lxd }:
|
, raft-canonical, sqlite, lxd-lts }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "dqlite";
|
pname = "dqlite";
|
||||||
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "dev" "out" ];
|
outputs = [ "dev" "out" ];
|
||||||
|
|
||||||
passthru.tests = {
|
passthru.tests = {
|
||||||
inherit lxd;
|
inherit lxd-lts;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4, lxd }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, file, libuv, lz4, lxd-lts }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "raft-canonical";
|
pname = "raft-canonical";
|
||||||
@ -33,7 +33,7 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "dev" "out" ];
|
outputs = [ "dev" "out" ];
|
||||||
|
|
||||||
passthru.tests = {
|
passthru.tests = {
|
||||||
inherit lxd;
|
inherit lxd-lts;
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -747,6 +747,8 @@ mapAliases ({
|
|||||||
|
|
||||||
lobster-two = google-fonts; # Added 2021-07-22
|
lobster-two = google-fonts; # Added 2021-07-22
|
||||||
luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07
|
luxcorerender = throw "'luxcorerender' has been removed as it's unmaintained and broken in nixpkgs since a while ago"; # Added 2023-06-07
|
||||||
|
lxd = lib.warn "lxd has been renamed to lxd-lts" lxd-lts; # Added 2024-04-01
|
||||||
|
lxd-unwrapped = lib.warn "lxd-unwrapped has been renamed to lxd-unwrapped-lts" lxd-unwrapped-lts; # Added 2024-04-01
|
||||||
lzma = xz; # moved from top-level 2021-03-14
|
lzma = xz; # moved from top-level 2021-03-14
|
||||||
|
|
||||||
### M ###
|
### M ###
|
||||||
|
Loading…
Reference in New Issue
Block a user