summary refs log tree commit diff
path: root/pkgs/applications/networking/dyndns
diff options
context:
space:
mode:
authoryvt <i@yvt.jp>2021-03-04 01:05:00 +0900
committeryvt <i@yvt.jp>2021-03-04 01:05:00 +0900
commit0177ea48e2a572360291df6bcc004a4e4eaaf00d (patch)
tree33cf6fee3733ed90a0b4bc366a0edbe5044b9eee /pkgs/applications/networking/dyndns
parent13555bc0e8246caeac5670a4f44735b8617e4987 (diff)
cfdyndns: fix build
The custom installPhase got broken as the rust build scripts only
provide $releaseDir in postInstall hooks. The default rust installPhase
installs the same files, so the custom one is unnecessary.
Diffstat (limited to 'pkgs/applications/networking/dyndns')
-rw-r--r--pkgs/applications/networking/dyndns/cfdyndns/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/pkgs/applications/networking/dyndns/cfdyndns/default.nix b/pkgs/applications/networking/dyndns/cfdyndns/default.nix
index dae9ad3bc33c6..51f62529e9c9b 100644
--- a/pkgs/applications/networking/dyndns/cfdyndns/default.nix
+++ b/pkgs/applications/networking/dyndns/cfdyndns/default.nix
@@ -17,11 +17,6 @@ buildRustPackage rec {
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [ openssl ];
 
-  installPhase = ''
-    mkdir -p $out/bin
-    cp -p $releaseDir/cfdyndns $out/bin/
-  '';
-
   meta = with lib; {
     description = "CloudFlare Dynamic DNS Client";
     homepage = "https://github.com/colemickens/cfdyndns";