This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
Permalink
Cannot retrieve contributors at this time
72 lines (60 sloc)
2.15 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
nixpkgs-channels/pkgs/tools/admin/lxd/default.nix
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ stdenv, hwdata, pkgconfig, lxc, buildGoPackage, fetchurl | |
, makeWrapper, acl, rsync, gnutar, xz, btrfs-progs, gzip, dnsmasq | |
, squashfsTools, iproute, iptables, ebtables, iptables-nftables-compat, libcap | |
, libco-canonical, dqlite, raft-canonical, sqlite-replication, udev | |
, writeShellScriptBin, apparmor-profiles, apparmor-parser | |
, criu | |
, bash | |
, installShellFiles | |
, nftablesSupport ? false | |
}: | |
let | |
networkPkgs = if nftablesSupport then | |
[ iptables-nftables-compat ] | |
else | |
[ iptables ebtables ]; | |
in | |
buildGoPackage rec { | |
pname = "lxd"; | |
version = "4.6"; | |
goPackagePath = "github.com/lxc/lxd"; | |
src = fetchurl { | |
url = "https://github.com/lxc/lxd/releases/download/${pname}-${version}/${pname}-${version}.tar.gz"; | |
sha256 = "011fsyafmpis6j0aq7vwd56m2mcb9v3rn4f246ms5nx6zgmga0ip"; | |
}; | |
postPatch = '' | |
substituteInPlace shared/usbid/load.go \ | |
--replace "/usr/share/misc/usb.ids" "${hwdata}/share/hwdata/usb.ids" | |
''; | |
preBuild = '' | |
# unpack vendor | |
pushd go/src/github.com/lxc/lxd | |
rm _dist/src/github.com/lxc/lxd | |
cp -r _dist/src/* ../../.. | |
popd | |
''; | |
buildFlags = [ "-tags libsqlite3" ]; | |
postInstall = '' | |
# test binaries, code generation | |
rm $out/bin/{deps,macaroon-identity,generate} | |
wrapProgram $out/bin/lxd --prefix PATH : ${stdenv.lib.makeBinPath ( | |
networkPkgs | |
++ [ acl rsync gnutar xz btrfs-progs gzip dnsmasq squashfsTools iproute bash criu ] | |
++ [ (writeShellScriptBin "apparmor_parser" '' | |
exec '${apparmor-parser}/bin/apparmor_parser' -I '${apparmor-profiles}/etc/apparmor.d' "$@" | |
'') ] | |
) | |
} | |
installShellCompletion --bash go/src/github.com/lxc/lxd/scripts/bash/lxd-client | |
''; | |
nativeBuildInputs = [ installShellFiles pkgconfig makeWrapper ]; | |
buildInputs = [ lxc acl libcap libco-canonical.dev dqlite.dev | |
raft-canonical.dev sqlite-replication udev.dev ]; | |
meta = with stdenv.lib; { | |
description = "Daemon based on liblxc offering a REST API to manage containers"; | |
homepage = "https://linuxcontainers.org/lxd/"; | |
license = licenses.asl20; | |
maintainers = with maintainers; [ fpletz wucke13 ]; | |
platforms = platforms.linux; | |
}; | |
} |