From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 12/24] gnu: gnome: Add mobile-broadband-provider-info. Date: Tue, 16 Aug 2016 20:39:26 +0200 Message-ID: <20160816183938.22794-12-david@craven.ch> References: <20160816183938.22794-1-david@craven.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45979) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZjHV-00020Q-R0 for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZjHQ-0006Ky-Mm for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:09 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:34372) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZjHP-0006H6-Fr for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:04 -0400 In-Reply-To: <20160816183938.22794-1-david@craven.ch> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org Cc: David Craven * gnu/packages/gnome.scm (mobile-broadband-provider-info): New variable. --- gnu/packages/gnome.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4a0be01..7bc0445 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2016 Leo Famulari ;;; Copyright © 2016 Alex Griffin ;;; Copyright © 2016 ng0 +;;; Copyright © 2016 David Craven ;;; ;;; This file is part of GNU Guix. ;;; @@ -4460,6 +4461,27 @@ devices, and provides VPN integration with a variety of different VPN services.") (license license:gpl2+))) +(define-public mobile-broadband-provider-info + (package + (name "mobile-broadband-provider-info") + (version "20151214") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://gnome/sources/" + "mobile-broadband-provider-info/" version "/" + "mobile-broadband-provider-info-" version ".tar.xz")) + (sha256 + (base32 + "1905nab1h8p4hx0m1w0rn4mkg9209x680dcr4l77bngy21pmvr4a")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f)) ; No tests + (home-page "https://wiki.gnome.org/Projects/NetworkManager") + (synopsis "Datbase of broadband connection configuration") + (description "Datbase of broadband connection configuration.") + (license license:public-domain))) + (define-public network-manager-applet (package (name "network-manager-applet") -- 2.9.0