From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 5/7] gnu: Add spice. Date: Sun, 24 Jul 2016 19:52:28 +0200 Message-ID: <20160724175230.19184-5-david@craven.ch> References: <20160723214618.GA26113@jasmine> <20160724175230.19184-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47313) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bRNaR-00059o-OK for guix-devel@gnu.org; Sun, 24 Jul 2016 13:53:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bRNaQ-0003sX-E3 for guix-devel@gnu.org; Sun, 24 Jul 2016 13:53:11 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:37873) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bRNaP-0003rT-6o for guix-devel@gnu.org; Sun, 24 Jul 2016 13:53:10 -0400 In-Reply-To: <20160724175230.19184-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/spice.scm: Add it. --- gnu/packages/spice.scm | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index ee29f08..365385e 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -152,3 +152,42 @@ which allows users to view a computing desktop environment.") (description "Gtk client and libraries for SPICE remote desktop servers.") (home-page "http://www.spice-space.org") (license (list license:lgpl2.1+ license:lgpl2.0+)))) + +(define-public spice + (package + (name "spice") + (version "0.13.1") + (source (origin + (method url-fetch) + (uri (string-append + "http://www.spice-space.org/download/releases/" + "spice-" version ".tar.bz2")) + (sha256 + (base32 + "18hxk47z58cqbix5h477qmvcdmsrwzv984jw4c6fj0ns4h217jwy")))) + (build-system gnu-build-system) + (inputs + `(("glib" ,glib) + ("libjpeg" ,libjpeg) + ("lz4" ,lz4) + ("openssl" ,openssl) + ("opus" ,opus) + ("pixman" ,pixman) + ("spice-protocol" ,spice-protocol) + ("zlib" ,zlib))) + (native-inputs + `(("pkg-config" ,pkg-config) + ("python" ,python) + ("spice-gtk" ,spice-gtk))) + (arguments + `(#:configure-flags + '("--disable-celt051" ;; Disable support for unpackaged audio codec + "--enable-lz4" + "--enable-automated-tests"))) + (synopsis "Server implementation of the SPICE protocol") + (description "SPICE is a remote display system built for virtual +environments which allows you to view a computing 'desktop' environment +not only on the machine where it is running, but from anywhere on the +Internet and from a wide variety of machine architectures.") + (home-page "http://www.spice-space.org") + (license (list license:lgpl2.1+ license:lgpl2.0+)))) -- 2.9.0