summary refs log tree commit diff
path: root/pkgs/tools/networking/vpnc-scripts
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-07-22 00:02:07 +0000
committerGitHub <noreply@github.com>2021-07-22 00:02:07 +0000
commit9f3ace4591752351eed2a2d640d5366b72751c4d (patch)
treed59a2791036ba69842e097e10007f62af53df03a /pkgs/tools/networking/vpnc-scripts
parent87cfb513c1454a2db75db9483d713eeca4341766 (diff)
parent8020f53c688d440707d27e2d76a5d453b7f9665e (diff)
downloadnixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar.gz
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar.bz2
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar.lz
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar.xz
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.tar.zst
nixpkgs-9f3ace4591752351eed2a2d640d5366b72751c4d.zip
Merge staging-next into staging
Diffstat (limited to 'pkgs/tools/networking/vpnc-scripts')
-rw-r--r--pkgs/tools/networking/vpnc-scripts/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/vpnc-scripts/default.nix b/pkgs/tools/networking/vpnc-scripts/default.nix
index 734c6d9f4ec..776e8450d13 100644
--- a/pkgs/tools/networking/vpnc-scripts/default.nix
+++ b/pkgs/tools/networking/vpnc-scripts/default.nix
@@ -1,6 +1,6 @@
 { lib, stdenv, fetchgit
 , makeWrapper
-, nettools, gawk, systemd, openresolv, coreutils, gnugrep
+, nettools, gawk, systemd, openresolv, coreutils, gnugrep, iproute2
 }:
 
 stdenv.mkDerivation {
@@ -28,7 +28,7 @@ stdenv.mkDerivation {
       --replace "/usr/bin/resolvectl" "${systemd}/bin/resolvectl"
   '' + ''
     wrapProgram $out/bin/vpnc-script \
-      --prefix PATH : "${lib.makeBinPath ([ nettools gawk coreutils gnugrep ] ++ lib.optionals stdenv.isLinux [ openresolv ])}"
+      --prefix PATH : "${lib.makeBinPath ([ nettools gawk coreutils gnugrep ] ++ lib.optionals stdenv.isLinux [ openresolv iproute2 ])}"
   '';
 
   meta = with lib; {