incus-lts: 6.0.5 -> 6.0.5-unstable-2026-01-23

https://github.com/advisories/GHSA-x6jc-phwx-hp32
https://github.com/advisories/GHSA-7f67-crqm-jgh7
This commit is contained in:
Adam C. Stephens
2026-01-23 21:12:03 -05:00
parent 667130a185
commit c30e7ba4d5
2 changed files with 21 additions and 9 deletions
+10 -7
View File
@@ -1,8 +1,9 @@
{
hash,
lts ? false,
patches ? [ ],
nixUpdateExtraArgs ? [ ],
patches ? [ ],
rev ? null,
vendorHash,
version,
}:
@@ -65,12 +66,14 @@ buildGoModule (finalAttrs: {
"doc"
];
src = fetchFromGitHub {
owner = "lxc";
repo = "incus";
tag = "v${version}";
inherit hash;
};
src = fetchFromGitHub (
{
owner = "lxc";
repo = "incus";
inherit hash;
}
// (if (rev == null) then { tag = "v${version}"; } else { inherit rev; })
);
patches = [ ./docs.patch ] ++ patches;
+11 -2
View File
@@ -1,11 +1,20 @@
import ./generic.nix {
hash = "sha256-B29HLuw48j7/Er7p/sHen7ohbbACsAjzPr9Nn8eZNR0=";
version = "6.0.5";
hash = "sha256-Sg3+399EgwEcZ8fp9cb2KEWQtBpYr5PkwTdnGl/AdfA";
version = "6.0.5-unstable-2026-01-23";
rev = "f8da60633e493bb5c0521981fa031bc909988c95";
vendorHash = "sha256-KOJqPvp+w7G505ZMJ1weRD2SATmfq1aeyCqmbJ6WMAY=";
patches = [
# qemu 9.1 compat, remove when added to LTS
./572afb06f66f83ca95efa1b9386fceeaa1c9e11b.patch
./0c37b7e3ec65b4d0e166e2127d9f1835320165b8.patch
# post 6.0.5 patches, remove >= 6.0.6
# ./c5359c809836c0f3b1e6022bf0528bb90ce06ad7.patch
# ./57096066959c843e1c413c4a97f64077b95cb397.patch
# ./f3dc9c0e6b77bb8765b347564702e026c2a8f9c6.patch
# ./d6a1ea3912938dae740cf821cd070e66e7a623ff.patch
# ./d6f0a77dd26df4c1ced80ffa63848279fd4330cc.patch
# ./92ac6ac999a4928cfdb92c485a048e4d51f471d0.patch
# ./f8da60633e493bb5c0521981fa031bc909988c95,patch
];
lts = true;
nixUpdateExtraArgs = [