summary refs log tree commit diff
diff options
context:
space:
mode:
authorElis Hirwing <elis@hirwing.se>2021-02-22 10:05:54 +0100
committerGitHub <noreply@github.com>2021-02-22 10:05:54 +0100
commit8377eef0274f7945be3b195ebb99398309a55826 (patch)
treefa488a87732d38db3e7b15e872e7db42c7f7bd8f
parentf5940b839898b6afa0df421ccf617262bdf34cb6 (diff)
parent8c2ed193e8101d0a89de2b9c0173efe8c2238195 (diff)
downloadnixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar.gz
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar.bz2
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar.lz
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar.xz
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.tar.zst
nixpkgs-8377eef0274f7945be3b195ebb99398309a55826.zip
Merge pull request #113917 from ymatsiuk/appgate
appgate-sdp: fix substitution bug
-rw-r--r--pkgs/applications/networking/appgate-sdp/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/appgate-sdp/default.nix b/pkgs/applications/networking/appgate-sdp/default.nix
index a1ea1d64c63..8b5f4103086 100644
--- a/pkgs/applications/networking/appgate-sdp/default.nix
+++ b/pkgs/applications/networking/appgate-sdp/default.nix
@@ -133,7 +133,7 @@ stdenv.mkDerivation rec {
         --replace "/bin/sh" "${bash}/bin/sh" \
         --replace "cat" "${coreutils}/bin/cat" \
         --replace "chattr" "${e2fsprogs}/bin/chattr" \
-        --replace "mv" "${coreutils}/bin/mv" \
+        --replace "mv " "${coreutils}/bin/mv " \
         --replace "pkill" "${procps}/bin/pkill"
     done
 
@@ -145,7 +145,7 @@ stdenv.mkDerivation rec {
         --replace "/bin/sh" "${bash}/bin/sh" \
         --replace "/opt/" "$out/opt/" \
         --replace "chattr" "${e2fsprogs}/bin/chattr" \
-        --replace "mv" "${coreutils}/bin/mv"
+        --replace "mv " "${coreutils}/bin/mv "
     done
 
     substituteInPlace $out/lib/systemd/system/appgatedriver.service \
@@ -174,7 +174,7 @@ stdenv.mkDerivation rec {
   '';
   meta = with lib; {
     description = "Appgate SDP (Software Defined Perimeter) desktop client";
-    homepage = https://www.appgate.com/support/software-defined-perimeter-support;
+    homepage = "https://www.appgate.com/support/software-defined-perimeter-support";
     license = licenses.unfree;
     platforms = platforms.linux;
     maintainers = with maintainers; [ ymatsiuk ];