about summary refs log tree commit diff
path: root/pkgs/applications/networking/dyndns
diff options
context:
space:
mode:
authorCole Mickens <cole.mickens@gmail.com>2020-03-10 14:43:05 -0700
committerCole Mickens <cole.mickens@gmail.com>2020-03-10 15:09:35 -0700
commit669fdccf8b396f6659afd152ad88ddf458a8b95e (patch)
tree0c8b765a3b4683d4d1b0cebae57baa5770a17379 /pkgs/applications/networking/dyndns
parent82b54d490663b6d87b7b34b9cfc0985df8b49c7d (diff)
cfdyndns: v0.0.1 -> v0.0.3
Diffstat (limited to 'pkgs/applications/networking/dyndns')
-rw-r--r--pkgs/applications/networking/dyndns/cfdyndns/default.nix15
1 files changed, 6 insertions, 9 deletions
diff --git a/pkgs/applications/networking/dyndns/cfdyndns/default.nix b/pkgs/applications/networking/dyndns/cfdyndns/default.nix
index e5b3e1d52f435..e4612579e0fee 100644
--- a/pkgs/applications/networking/dyndns/cfdyndns/default.nix
+++ b/pkgs/applications/networking/dyndns/cfdyndns/default.nix
@@ -1,23 +1,21 @@
-{ stdenv, fetchFromGitHub, rustPlatform, makeWrapper, openssl }:
+{ stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
 
 with rustPlatform;
 
 buildRustPackage rec {
   pname = "cfdyndns";
-  version = "0.0.1";
+  version = "0.0.3";
   src = fetchFromGitHub {
     owner = "colemickens";
     repo = "cfdyndns";
     rev = "v${version}";
-    sha256 = "1mcdjykrgh0jq6k6y664lai8sbgzk6j7k0r944f43vg63d1jql5b";
+    sha256 = "1fba0w2979dmc2wyggqx4fj52rrl1s2vpjk6mkj1811a848l1hdi";
   };
 
-  # Delete this on next update; see #79975 for details
-  legacyCargoFetcher = true;
+  cargoSha256 = "04ryin24z3pfxjxy4smngy66xs7k85g6gdzsl77cij8ifb29im99";
 
-  cargoSha256 = "1d7jpffkw2m2v37bfdqsl9sqwsl19cgglpa00lwy4ih09kzbc2n9";
-
-  buildInputs = [ makeWrapper openssl ];
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ openssl ];
 
   installPhase = ''
     mkdir -p $out/bin
@@ -30,6 +28,5 @@ buildRustPackage rec {
     license = stdenv.lib.licenses.mit;
     maintainers = with maintainers; [ colemickens ];
     platforms = with platforms; linux;
-    broken = true;
   };
 }