mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 20:14:37 +00:00
ddclient: 3.10.0 -> 3.11.0_1
As per the changelog[1], ddclient uses curl instead of perl
IO::Socket::IP and IO::Socket::SSL now.
[1] d4f9816a6a/ChangeLog.md (2023-10-15-v3110_1)
This commit is contained in:
parent
c57531c8d0
commit
2668c2162e
@ -1,8 +1,8 @@
|
||||
{ lib, fetchFromGitHub, perlPackages, autoreconfHook, iproute2, perl }:
|
||||
{ lib, fetchFromGitHub, perlPackages, autoreconfHook, iproute2, perl, curl }:
|
||||
|
||||
perlPackages.buildPerlPackage rec {
|
||||
pname = "ddclient";
|
||||
version = "3.10.0";
|
||||
version = "3.11.0_1";
|
||||
|
||||
outputs = [ "out" ];
|
||||
|
||||
@ -10,7 +10,7 @@ perlPackages.buildPerlPackage rec {
|
||||
owner = "ddclient";
|
||||
repo = "ddclient";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-wWUkjXwVNZRJR1rXPn3IkDRi9is9vsRuNC/zq8RpB1E=";
|
||||
sha256 = "sha256-pl1kbzY5nUIvx1QiDdL9TP4vKtQnnv3RWklE4gbxXCw=";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
@ -19,7 +19,7 @@ perlPackages.buildPerlPackage rec {
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
buildInputs = with perlPackages; [ IOSocketINET6 IOSocketSSL JSONPP ];
|
||||
buildInputs = [ curl ] ++ (with perlPackages; [ JSONPP ]);
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
Loading…
Reference in New Issue
Block a user