nixpkgs/pkgs/tools/admin/lxd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

68 lines
2.1 KiB
Nix
Raw Normal View History

{ 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
, squashfsTools, iproute2, iptables, libcap
, dqlite, raft-canonical, sqlite-replication, udev
, writeShellScriptBin, apparmor-profiles, apparmor-parser
2019-07-09 18:47:19 +02:00
, criu
, 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
buildGo118Package rec {
pname = "lxd";
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 {
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
};
postPatch = ''
substituteInPlace shared/usbid/load.go \
--replace "/usr/share/misc/usb.ids" "${hwdata}/share/hwdata/usb.ids"
'';
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)"
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 (
[ 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
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;
passthru.tests.lxd-nftables = nixosTests.lxd-nftables;
2020-12-06 09:59:59 +01:00
nativeBuildInputs = [ installShellFiles pkg-config makeWrapper ];
buildInputs = [ lxc acl libcap dqlite.dev raft-canonical.dev
sqlite-replication udev.dev ];
2016-06-03 15:55:03 +02: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;
maintainers = with maintainers; [ fpletz marsam ];
2016-06-03 15:55:03 +02:00
platforms = platforms.linux;
};
}