about summary refs log tree commit diff
path: root/pkgs/tools/admin/lxd
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-04-14 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-04-14 04:20:00 +0000
commitd21f677be0dc0c673cf92acce6ba5c7790afd42d (patch)
treecb4e5a9afd7f9651e6390f51283e39e5f7851c2c /pkgs/tools/admin/lxd
parent31903471bdf59adbaf7818eae89b477004604f28 (diff)
lxd: 4.24 -> 5.0.0
https://github.com/lxc/lxd/releases/tag/lxd-5.0.0
Diffstat (limited to 'pkgs/tools/admin/lxd')
-rw-r--r--pkgs/tools/admin/lxd/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/admin/lxd/default.nix b/pkgs/tools/admin/lxd/default.nix
index 55267651c9fb7..3fcb68a5b66ff 100644
--- a/pkgs/tools/admin/lxd/default.nix
+++ b/pkgs/tools/admin/lxd/default.nix
@@ -1,4 +1,4 @@
-{ lib, hwdata, pkg-config, lxc, buildGoPackage, fetchurl, fetchpatch
+{ lib, hwdata, pkg-config, lxc, buildGo118Package, fetchurl, fetchpatch
 , makeWrapper, acl, rsync, gnutar, xz, btrfs-progs, gzip, dnsmasq, attr
 , squashfsTools, iproute2, iptables, libcap
 , dqlite, raft-canonical, sqlite-replication, udev
@@ -9,15 +9,15 @@
 , nixosTests
 }:
 
-buildGoPackage rec {
+buildGo118Package rec {
   pname = "lxd";
-  version = "4.24";
+  version = "5.0.0";
 
   goPackagePath = "github.com/lxc/lxd";
 
   src = fetchurl {
     url = "https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz";
-    sha256 = "sha256-l/rhWhgmvHOkXL+Omt93X9lwIkiGO4pZl95UlOquslI=";
+    sha256 = "sha256-qZt+37UsgZWy3kmIhE0y1zvmQm9s/yhAglBReyOP3vk=";
   };
 
   postPatch = ''