From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Craven Subject: [PATCH 09/24] gnu: freedesktop: Add wayland-protocols. Date: Tue, 16 Aug 2016 20:39:23 +0200 Message-ID: <20160816183938.22794-9-david@craven.ch> References: <20160816183938.22794-1-david@craven.ch> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45914) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZjHT-0001uE-9M for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bZjHO-0006KA-CF for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:06 -0400 Received: from so254-10.mailgun.net ([198.61.254.10]:39872) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bZjHN-0006I9-5c for guix-devel@gnu.org; Tue, 16 Aug 2016 14:40:02 -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/freedesktop.scm (wayland-protocols): New variable. --- gnu/packages/freedesktop.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/freedesktop.scm b/gnu/packages/freedesktop.scm index 0262d0a..a24d8fa 100644 --- a/gnu/packages/freedesktop.scm +++ b/gnu/packages/freedesktop.scm @@ -295,6 +295,28 @@ application, or a wayland client itself. The clients can be traditional applications, X servers (rootless or fullscreen) or other display servers.") (license license:x11))) +(define-public wayland-protocols + (package + (name "wayland-protocols") + (version "1.4") + (source (origin + (method url-fetch) + (uri (string-append + "https://wayland.freedesktop.org/releases/" + "wayland-protocols-" version ".tar.xz")) + (sha256 + (base32 + "0wpm7mz7ww6nn3vrgz7a9iyk7mk6za73wnq0n54lzl8yq8irljh1")))) + (build-system gnu-build-system) + (inputs + `(("wayland" ,wayland))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "Wayland protocols") + (description "Contains Xml definitions of the wayland protocols.") + (home-page "https://wayland.freedesktop.org") + (license license:expat))) + (define-public exempi (package (name "exempi") -- 2.9.0