2022-04-14 06:20:00 +02:00
|
|
|
{ lib, hwdata, pkg-config, lxc, buildGo118Package, fetchurl, fetchpatch
|
2021-09-05 01:29:55 +02:00
|
|
|
, makeWrapper, acl, rsync, gnutar, xz, btrfs-progs, gzip, dnsmasq, attr
|
2020-03-15 16:03:26 +01:00
|
|
|
, squashfsTools, iproute2, iptables, libcap
|
2021-05-15 19:13:37 +02:00
|
|
|
, dqlite, raft-canonical, sqlite-replication, udev
|
2018-11-20 07:36:56 +01:00
|
|
|
, writeShellScriptBin, apparmor-profiles, apparmor-parser
|
2019-07-09 18:47:19 +02:00
|
|
|
, criu
|
2019-02-04 09:19:14 +01:00
|
|
|
, bash
|
2020-04-26 05:16:56 +02:00
|
|
|
, installShellFiles
|
2020-12-06 09:59:59 +01:00
|
|
|
, nixosTests
|
2018-03-16 10:58:54 +01:00
|
|
|
}:
|
2016-06-03 15:55:03 +02:00
|
|
|
|
2022-04-14 06:20:00 +02:00
|
|
|
buildGo118Package rec {
|
2019-03-12 18:56:47 +01:00
|
|
|
pname = "lxd";
|
2022-05-28 06:20:00 +02:00
|
|
|
version = "5.2";
|
2016-06-03 15:55:03 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/lxc/lxd";
|
|
|
|
|
2018-03-16 10:58:54 +01:00
|
|
|
src = fetchurl {
|
2022-05-28 06:20:00 +02:00
|
|
|
urls = [
|
|
|
|
"https://linuxcontainers.org/downloads/lxd/lxd-${version}.tar.gz"
|
|
|
|
"https://github.com/lxc/lxd/releases/download/lxd-${version}/lxd-${version}.tar.gz"
|
|
|
|
];
|
|
|
|
sha256 = "sha256-4i0rNKGEjTOyCAsrHII1WvttNv3+SeZ/RLN0ntvALkw=";
|
2016-06-03 15:55:03 +02:00
|
|
|
};
|
|
|
|
|
2020-05-03 14:34:25 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace shared/usbid/load.go \
|
|
|
|
--replace "/usr/share/misc/usb.ids" "${hwdata}/share/hwdata/usb.ids"
|
|
|
|
'';
|
|
|
|
|
2022-04-30 06:20:00 +02:00
|
|
|
excludedPackages = [ "test" "lxd/db/generate" ];
|
|
|
|
|
2018-03-16 10:58:54 +01:00
|
|
|
preBuild = ''
|
2021-07-14 06:20:00 +02:00
|
|
|
# required for go-dqlite. See: https://github.com/lxc/lxd/pull/8939
|
|
|
|
export CGO_LDFLAGS_ALLOW="(-Wl,-wrap,pthread_create)|(-Wl,-z,now)"
|
|
|
|
|
2021-05-15 19:13:37 +02:00
|
|
|
makeFlagsArray+=("-tags libsqlite3")
|
|
|
|
'';
|
2018-10-13 11:44:54 +02:00
|
|
|
|
2018-03-16 10:58:54 +01:00
|
|
|
postInstall = ''
|
2021-01-15 10:19:50 +01:00
|
|
|
wrapProgram $out/bin/lxd --prefix PATH : ${lib.makeBinPath (
|
2020-03-15 16:03:26 +01:00
|
|
|
[ iptables ]
|
2021-09-05 01:29:55 +02:00
|
|
|
++ [ acl rsync gnutar xz btrfs-progs gzip dnsmasq squashfsTools iproute2 bash criu attr ]
|
2020-06-05 12:57:18 +02:00
|
|
|
++ [ (writeShellScriptBin "apparmor_parser" ''
|
|
|
|
exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@"
|
|
|
|
'') ]
|
|
|
|
)
|
|
|
|
}
|
2019-07-09 18:53:01 +02:00
|
|
|
|
2021-03-06 05:20:00 +01:00
|
|
|
installShellCompletion --bash --name lxd go/src/github.com/lxc/lxd/scripts/bash/lxd-client
|
2018-03-16 10:58:54 +01:00
|
|
|
'';
|
|
|
|
|
2020-12-06 09:59:59 +01:00
|
|
|
passthru.tests.lxd = nixosTests.lxd;
|
2022-05-03 12:24:13 +02:00
|
|
|
passthru.tests.lxd-nftables = nixosTests.lxd-nftables;
|
2020-12-06 09:59:59 +01:00
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ installShellFiles pkg-config makeWrapper ];
|
2021-05-15 19:13:37 +02:00
|
|
|
buildInputs = [ lxc acl libcap dqlite.dev raft-canonical.dev
|
|
|
|
sqlite-replication udev.dev ];
|
2016-06-03 15:55:03 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-03 15:55:03 +02:00
|
|
|
description = "Daemon based on liblxc offering a REST API to manage containers";
|
2020-04-02 11:20:00 +02:00
|
|
|
homepage = "https://linuxcontainers.org/lxd/";
|
2016-06-03 15:55:03 +02:00
|
|
|
license = licenses.asl20;
|
2022-02-21 09:31:34 +01:00
|
|
|
maintainers = with maintainers; [ fpletz marsam ];
|
2016-06-03 15:55:03 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|