diff options
author | Mark H Weaver <mhw@netris.org> | 2017-01-14 05:24:09 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2017-01-14 05:24:09 -0500 |
commit | 5827ea30ee64f2981929f865cf4c07e6c4712773 (patch) | |
tree | 31b6505f4ad9b53860028d2e47db62c34c15e484 /gnu/packages/upnp.scm | |
parent | 57203ebba0fa3eaa7c2df9bfd3e7c59f8ee98f6a (diff) | |
parent | dd42a330d1301fd34f36dada9d142006165abaef (diff) | |
download | guix-5827ea30ee64f2981929f865cf4c07e6c4712773.tar.gz |
Merge branch 'master' into gnome-updates
Diffstat (limited to 'gnu/packages/upnp.scm')
-rw-r--r-- | gnu/packages/upnp.scm | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/upnp.scm b/gnu/packages/upnp.scm index f680a52881..9be9741202 100644 --- a/gnu/packages/upnp.scm +++ b/gnu/packages/upnp.scm @@ -1,6 +1,6 @@ ;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in> -;;; Copyright © 2016 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2016, 2017 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -28,15 +28,14 @@ (define-public miniupnpc (package (name "miniupnpc") - (version "2.0") + (version "2.0.20161216") (source (origin (method url-fetch) - (uri (string-append - "http://miniupnp.tuxfamily.org/files/miniupnpc-" - version ".tar.gz")) + (uri (string-append "https://miniupnp.tuxfamily.org/files/" + name "-" version ".tar.gz")) (sha256 - (base32 "0fzrc6fs8vzb2yvk01bd3q5jkarysl7gjlyaqncy3yvfk2wcwd6l")))) + (base32 "0gpxva9jkjvqwawff5y51r6bmsmdhixl3i5bmzlqsqpwsq449q81")))) (build-system gnu-build-system) (native-inputs `(("python" ,python-2))) |