mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: nss-mdns: Add alternate source URLs.
Based on 8c43746
by Ludovic Courtès <ludo@gnu.org>.
Fixes <http://bugs.gnu.org/18704>.
* gnu/packages/avahi.scm (nss-mdns)[source]: Add Debian and Fedora mirrors.
This commit is contained in:
parent
7d09fb3464
commit
0546393164
1 changed files with 18 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2013, 2014 Ludovic Courtès <ludo@gnu.org>
|
||||||
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -75,14 +76,27 @@ (define-public nss-mdns
|
||||||
(version "0.10")
|
(version "0.10")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (list
|
||||||
"http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-"
|
(string-append
|
||||||
version ".tar.gz"))
|
"mirror://debian/pool/main/n/nss-mdns/nss-mdns_"
|
||||||
|
version ".orig.tar.gz")
|
||||||
|
"http://pkgs.fedoraproject.org/repo/pkgs/nss-mdns/nss-mdns-0.10.tar.gz/03938f17646efbb50aa70ba5f99f51d7/nss-mdns-0.10.tar.gz"
|
||||||
|
|
||||||
|
;; This used to be the canonical URL but it vanished.
|
||||||
|
;; See <http://bugs.gnu.org/18704>.
|
||||||
|
;; (string-append
|
||||||
|
;; "http://0pointer.de/lennart/projects/nss-mdns/nss-mdns-"
|
||||||
|
;; version ".tar.gz")
|
||||||
|
))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0vgs6j0qsl0mwzh5a0m0bykr7x6bx79vnbyn0r3q289rghp3qs0y"))))
|
"0vgs6j0qsl0mwzh5a0m0bykr7x6bx79vnbyn0r3q289rghp3qs0y"))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
|
||||||
|
;; XXX: Stale URL, missing replacement. See <http://bugs.gnu.org/18704>.
|
||||||
(home-page "http://0pointer.de/lennart/projects/nss-mdns/")
|
(home-page "http://0pointer.de/lennart/projects/nss-mdns/")
|
||||||
|
|
||||||
(synopsis "The mDNS Name Service Switch (NSS) plug-in")
|
(synopsis "The mDNS Name Service Switch (NSS) plug-in")
|
||||||
(description
|
(description
|
||||||
"'nss-mdns' is a plug-in for the Name Service Switch (NSS) functionality
|
"'nss-mdns' is a plug-in for the Name Service Switch (NSS) functionality
|
||||||
|
|
Loading…
Reference in a new issue