Merge pull request #113917 from ymatsiuk/appgate

appgate-sdp: fix substitution bug

authored by

Elis Hirwing and committed by
GitHub
8377eef0 f5940b83

+3 -3
+3 -3
pkgs/applications/networking/appgate-sdp/default.nix
··· 133 133 --replace "/bin/sh" "${bash}/bin/sh" \ 134 134 --replace "cat" "${coreutils}/bin/cat" \ 135 135 --replace "chattr" "${e2fsprogs}/bin/chattr" \ 136 - --replace "mv" "${coreutils}/bin/mv" \ 136 + --replace "mv " "${coreutils}/bin/mv " \ 137 137 --replace "pkill" "${procps}/bin/pkill" 138 138 done 139 139 ··· 145 145 --replace "/bin/sh" "${bash}/bin/sh" \ 146 146 --replace "/opt/" "$out/opt/" \ 147 147 --replace "chattr" "${e2fsprogs}/bin/chattr" \ 148 - --replace "mv" "${coreutils}/bin/mv" 148 + --replace "mv " "${coreutils}/bin/mv " 149 149 done 150 150 151 151 substituteInPlace $out/lib/systemd/system/appgatedriver.service \ ··· 174 174 ''; 175 175 meta = with lib; { 176 176 description = "Appgate SDP (Software Defined Perimeter) desktop client"; 177 - homepage = https://www.appgate.com/support/software-defined-perimeter-support; 177 + homepage = "https://www.appgate.com/support/software-defined-perimeter-support"; 178 178 license = licenses.unfree; 179 179 platforms = platforms.linux; 180 180 maintainers = with maintainers; [ ymatsiuk ];