lxc: 6.0.5 -> 6.0.6 (#494861)

This commit is contained in:
Adam C. Stephens
2026-02-27 21:35:14 +00:00
committed by GitHub
+5 -9
View File
@@ -22,13 +22,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "lxc";
version = "6.0.5";
version = "6.0.6";
src = fetchFromGitHub {
owner = "lxc";
repo = "lxc";
tag = "v${finalAttrs.version}";
hash = "sha256-bnvKSs7w1cq3vP2BzX4kfDrGUIFhU4Fnu5pM81jPVQ8=";
hash = "sha256-DaKyaBfxO67L7zzOAYWSiYTAIILtdF4Ij7EXr+SAXVs=";
};
nativeBuildInputs = [
@@ -94,16 +94,12 @@ stdenv.mkDerivation (finalAttrs: {
lxc = nixosTests.lxc;
};
updateScript = nix-update-script {
extraArgs = [
"--version-regex"
"v(6\\.0\\.*)"
];
};
updateScript = nix-update-script { };
};
meta = {
homepage = "https://linuxcontainers.org/";
homepage = "https://linuxcontainers.org/lxc/";
changelog = "https://github.com/lxc/lxc/releases/tag/v${finalAttrs.version}";
description = "Userspace tools for Linux Containers, a lightweight virtualization system";
license = lib.licenses.gpl2;