4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
73 lines
2.2 KiB
Nix
73 lines
2.2 KiB
Nix
{ lib, 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.10";
|
|
|
|
goPackagePath = "github.com/lxc/lxd";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/lxc/lxd/releases/download/${pname}-${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "0s8lbvh2vsqphvspyjyxp5s589gf2wrjpka8v496lf6fv1nsi5s8";
|
|
};
|
|
|
|
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 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;
|
|
};
|
|
}
|