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

63 lines
1.9 KiB
Nix
Raw Normal View History

{ stdenv, pkgconfig, lxc, buildGoPackage, fetchurl, fetchpatch
2018-06-28 18:59:07 +00:00
, makeWrapper, acl, rsync, gnutar, xz, btrfs-progs, gzip, dnsmasq
2018-10-13 09:44:54 +00:00
, squashfsTools, iproute, iptables, ebtables, libcap, dqlite
, sqlite-replication
, writeShellScriptBin, apparmor-profiles, apparmor-parser
, bash
2018-03-16 09:58:54 +00:00
}:
2016-06-03 13:55:03 +00:00
buildGoPackage rec {
pname = "lxd";
version = "3.11";
2016-06-03 13:55:03 +00:00
goPackagePath = "github.com/lxc/lxd";
2018-03-16 09:58:54 +00:00
src = fetchurl {
url = "https://github.com/lxc/lxd/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
sha256 = "0xxzrwhyzzp23arj57vjs1yh91gy3r4wpd5qy9ksifzd390clf2x";
2016-06-03 13:55:03 +00:00
};
patches = [
(fetchpatch {
url = https://github.com/CanonicalLtd/go-dqlite/commit/88a96df66e3e3bdc290fd4a0d41615d284d2c92c.patch;
sha256 = "0z6r4shh1rlf0in9xk1gi6ms2kcvplc3878106d2zzzfz7ad83a4";
extraPrefix = "dist/src/github.com/CanonicalLtd/go-dqlite/";
stripLen = 1;
})
];
2018-03-16 09:58:54 +00:00
preBuild = ''
# unpack vendor
pushd go/src/github.com/lxc/lxd
rm dist/src/github.com/lxc/lxd
cp -r dist/src/* ../../..
rm -r dist
popd
'';
2016-06-03 13:55:03 +00:00
2018-10-13 09:44:54 +00:00
buildFlags = [ "-tags libsqlite3" ];
2018-03-16 09:58:54 +00:00
postInstall = ''
2019-02-08 06:54:38 +00:00
# test binaries, code generation
rm $bin/bin/{deps,macaroon-identity,generate}
2018-03-16 09:58:54 +00:00
wrapProgram $bin/bin/lxd --prefix PATH : ${stdenv.lib.makeBinPath [
acl rsync gnutar xz btrfs-progs gzip dnsmasq squashfsTools iproute iptables ebtables bash
(writeShellScriptBin "apparmor_parser" ''
exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@"
'')
2018-03-16 09:58:54 +00:00
]}
'';
nativeBuildInputs = [ pkgconfig makeWrapper ];
2018-10-13 09:44:54 +00:00
buildInputs = [ lxc acl libcap dqlite sqlite-replication ];
2016-06-03 13:55:03 +00:00
meta = with stdenv.lib; {
description = "Daemon based on liblxc offering a REST API to manage containers";
2017-06-20 00:02:54 +00:00
homepage = https://linuxcontainers.org/lxd/;
2016-06-03 13:55:03 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ globin fpletz ];
platforms = platforms.linux;
};
}