mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
lxd: 3.10 -> 3.11, patch vendored go-dqlite to fix w/dqlite 0.2.6
This commit is contained in:
parent
e5a71bd9f7
commit
c3fb95b4ee
1 changed files with 14 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, pkgconfig, lxc, buildGoPackage, fetchurl
|
||||
{ stdenv, pkgconfig, lxc, buildGoPackage, fetchurl, fetchpatch
|
||||
, makeWrapper, acl, rsync, gnutar, xz, btrfs-progs, gzip, dnsmasq
|
||||
, squashfsTools, iproute, iptables, ebtables, libcap, dqlite
|
||||
, sqlite-replication
|
||||
|
@ -7,15 +7,25 @@
|
|||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
name = "lxd-3.10";
|
||||
pname = "lxd";
|
||||
version = "3.11";
|
||||
|
||||
goPackagePath = "github.com/lxc/lxd";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/lxc/lxd/releases/download/${name}/${name}.tar.gz";
|
||||
sha256 = "0vd0p3xf54s7f9vcjfiin29py6hxyyxnisvp6am67l5nwhg7rnnc";
|
||||
url = "https://github.com/lxc/lxd/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
|
||||
sha256 = "0xxzrwhyzzp23arj57vjs1yh91gy3r4wpd5qy9ksifzd390clf2x";
|
||||
};
|
||||
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = https://github.com/CanonicalLtd/go-dqlite/commit/88a96df66e3e3bdc290fd4a0d41615d284d2c92c.patch;
|
||||
sha256 = "0z6r4shh1rlf0in9xk1gi6ms2kcvplc3878106d2zzzfz7ad83a4";
|
||||
extraPrefix = "dist/src/github.com/CanonicalLtd/go-dqlite/";
|
||||
stripLen = 1;
|
||||
})
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
# unpack vendor
|
||||
pushd go/src/github.com/lxc/lxd
|
||||
|
|
Loading…
Reference in a new issue