pipework: remove dhcp package

Pipework can optionally use dhclient, but supports other dhcp clients as
well, so we can safely remove it.
This commit is contained in:
Martin Weinelt 2022-03-30 20:49:30 +02:00
parent a31f123c1c
commit c6e3a81aea
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,5 +1,5 @@
{ stdenv, lib, fetchFromGitHub, makeWrapper
, bridge-utils, iproute2, lxc, openvswitch, docker, busybox, dhcpcd, dhcp
, bridge-utils, iproute2, lxc, openvswitch, docker, busybox, dhcpcd
}:
stdenv.mkDerivation {
@ -15,7 +15,7 @@ stdenv.mkDerivation {
installPhase = ''
install -D pipework $out/bin/pipework
wrapProgram $out/bin/pipework --prefix PATH : \
${lib.makeBinPath [ bridge-utils iproute2 lxc openvswitch docker busybox dhcpcd dhcp ]};
${lib.makeBinPath [ bridge-utils iproute2 lxc openvswitch docker busybox dhcpcd ]};
'';
meta = with lib; {
description = "Software-Defined Networking tools for LXC";