diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-08-16 20:56:38 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-08-16 20:56:38 +0200 |
commit | df570bf271536399993b39e7ea2ea0452bb6cde4 (patch) | |
tree | 32cde458f90c599691831fc33cfbd4efcca9e9eb /gnu/packages/dns.scm | |
parent | 37d203985e2817b0962129384e8b993a1bb92de9 (diff) | |
parent | 5f9a9945b5747e5ec284f8b116b2e8cc1b9064d7 (diff) | |
download | guix-df570bf271536399993b39e7ea2ea0452bb6cde4.tar.gz |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/dns.scm')
-rw-r--r-- | gnu/packages/dns.scm | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm index a8ac3feaa7..0e80adf609 100644 --- a/gnu/packages/dns.scm +++ b/gnu/packages/dns.scm @@ -45,6 +45,7 @@ #:use-module (gnu packages linux) #:use-module (gnu packages ncurses) #:use-module (gnu packages nettle) + #:use-module (gnu packages networking) #:use-module (gnu packages perl) #:use-module (gnu packages pkg-config) #:use-module (gnu packages protobuf) @@ -107,7 +108,7 @@ and BOOTP/TFTP for network booting of diskless machines.") (source (origin (method url-fetch) (uri (string-append - "ftp://ftp.isc.org/isc/bind9/" version "/" name "-" + "https://ftp.isc.org/isc/bind9/" version "/" name "-" version ".tar.gz")) (sha256 (base32 @@ -583,14 +584,14 @@ synthesis, and on-the-fly re-configuration.") (define-public ddclient (package (name "ddclient") - (version "3.8.3") + (version "3.9.0") (source (origin (method url-fetch) (uri (string-append "mirror://sourceforge/ddclient/ddclient/ddclient-" version "/ddclient-" version ".tar.gz")) (sha256 (base32 - "1j8zdn7fy7i0bjk3jf0hxnbnshc2yf054vxq64imxdpfd7n5zgfy")))) + "0fwyhab8yga2yi1kdfkbqxa83wxhwpagmj1w1mwkg2iffh1fjjlw")))) (build-system trivial-build-system) ; no Makefile.PL (native-inputs `(("bash" ,bash) @@ -598,10 +599,11 @@ synthesis, and on-the-fly re-configuration.") ("perl" ,perl) ("tar" ,tar))) (inputs - `(("net-tools" ,net-tools) - ("inetutils" ,inetutils) ;logger - ("perl-io-socket-ssl" ,perl-io-socket-ssl) - ("perl-digest-sha1" ,perl-digest-sha1))) + `(("inetutils" ,inetutils) ; logger + ("net-tools" ,net-tools) + ("perl-data-validate-ip" ,perl-data-validate-ip) + ("perl-digest-sha1" ,perl-digest-sha1) + ("perl-io-socket-ssl" ,perl-io-socket-ssl))) (arguments `(#:modules ((guix build utils) (ice-9 match) |