diff options
author | David Craven <david@craven.ch> | 2016-07-24 19:52:28 +0200 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-07-28 17:08:42 -0400 |
commit | 3cbd37e4408ea9c827a62c43946cda7b486a32f1 (patch) | |
tree | 16a2efe406f82ee76d13e7f96fd21a461f69d2e1 | |
parent | bb28cf90e9b3c72dd6f1aeaf50c2828271c9fa7b (diff) | |
download | guix-3cbd37e4408ea9c827a62c43946cda7b486a32f1.tar.gz guix-3cbd37e4408ea9c827a62c43946cda7b486a32f1.zip |
gnu: Add spice.
* gnu/packages/spice.scm (spice): New variable.
Signed-off-by: Leo Famulari <leo@famulari.name>
-rw-r--r-- | gnu/packages/spice.scm | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index 29c3a8e78b..2976f88763 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -169,3 +169,43 @@ which allows users to view a desktop computing 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) + (propagated-inputs + `(("openssl" ,openssl) + ("pixman" ,pixman) + ("spice-protocol" ,spice-protocol))) + (inputs + `(("glib" ,glib) + ("libjpeg" ,libjpeg) + ("lz4" ,lz4) + ("opus" ,opus) + ("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+)))) |