Unverified Commit 874d79d4 authored by Adam Stephens's avatar Adam Stephens
Browse files

lxd: 5.13 -> 5.14

parent b2abc0e2
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -28,18 +28,19 @@
, bash
, installShellFiles
, nixosTests
, gitUpdater
}:

buildGoModule rec {
  pname = "lxd";
  version = "5.13";
  version = "5.14";

  src = fetchurl {
    urls = [
      "https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"
      "https://github.com/lxc/lxd/releases/download/lxd-${version}/lxd-${version}.tar.gz"
    ];
    hash = "sha256-kys8zfqhkpJqq4ICg6dOsoJEoxJ209GwdjGRrfrZ7j0=";
    hash = "sha256-EtVZ0g9LD6dWA70/E1Ad/RWJjbvrAzU2hF3n6CdTMBE=";
  };

  vendorHash = null;
@@ -98,6 +99,10 @@ buildGoModule rec {

  passthru.tests.lxd = nixosTests.lxd;
  passthru.tests.lxd-nftables = nixosTests.lxd-nftables;
  passthru.updateScript = gitUpdater {
    url = "https://github.com/lxc/lxd.git";
    rev-prefix = "lxd-";
  };

  meta = with lib; {
    description = "Daemon based on liblxc offering a REST API to manage containers";