summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMichael Adler <therisen06@gmail.com>2021-07-21 15:38:50 +0200
committerMichael Adler <michael.adler@siemens.com>2021-07-21 15:59:30 +0200
commit45e376facc7aa02db51253c800ef2f5337d61c4a (patch)
treea5f0658d16b72adc98632c07af92cf27679308aa /pkgs
parentc22ab152da39007fe7545a6ef5d9892cc82d90ef (diff)
downloadnixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar.gz
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar.bz2
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar.lz
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar.xz
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.tar.zst
nixpkgs-45e376facc7aa02db51253c800ef2f5337d61c4a.zip
vpnc-scripts: add missing dependency iproute2
Diffstat (limited to 'pkgs')
-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; {