Unverified Commit 38f09f4a authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

lxc: 6.0.5 -> 6.0.6 (#494861)

parents b1fdb955 5ed53faa
Loading
Loading
Loading
Loading
+5 −9
Original line number Diff line number Diff line
@@ -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;