summary refs log tree commit diff
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-30 20:49:30 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-30 21:05:10 +0200
commitc6e3a81aea61b7e12560e1b346d285f90b70274d (patch)
tree71f164363112bed7fff374d61b8ab2406b87f5b0
parenta31f123c1cb68e107f54d1a54500de6ba8b9b0ef (diff)
downloadnixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar.gz
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar.bz2
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar.lz
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar.xz
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.tar.zst
nixpkgs-c6e3a81aea61b7e12560e1b346d285f90b70274d.zip
pipework: remove dhcp package
Pipework can optionally use dhclient, but supports other dhcp clients as
well, so we can safely remove it.
-rw-r--r--pkgs/os-specific/linux/pipework/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/pipework/default.nix b/pkgs/os-specific/linux/pipework/default.nix
index 33192392888..ea274377ced 100644
--- a/pkgs/os-specific/linux/pipework/default.nix
+++ b/pkgs/os-specific/linux/pipework/default.nix
@@ -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";