From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 1/2] gnu: Add libvdpau. Date: Mon, 21 Dec 2015 16:45:06 +0200 Message-ID: <1450709107-16450-2-git-send-email-efraim@flashner.co.il> References: <1450709107-16450-1-git-send-email-efraim@flashner.co.il> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB1jI-0006Pi-GH for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aB1jF-0000be-Ru for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:28 -0500 Received: from flashner.co.il ([178.62.234.194]:47283) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB1jF-0000ap-LL for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:25 -0500 Received: from localhost.localdomain (unknown [37.26.149.131]) by flashner.co.il (Postfix) with ESMTPSA id A25B24046A for ; Mon, 21 Dec 2015 14:46:22 +0000 (UTC) In-Reply-To: <1450709107-16450-1-git-send-email-efraim@flashner.co.il> 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-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: guix-devel@gnu.org * gnu/packages/video.scm (libvdpau): New variable. --- gnu/packages/video.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 85b7414..5b3cccb 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1301,3 +1301,29 @@ from many input sources such as webcams, X11 (for screencasting), PulseAudio, and JACK.") (home-page "https://obsproject.com") (license license:gpl2+))) + +(define-public libvdpau + (package + (name "libvdpau") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (string-append "https://secure.freedesktop.org/~aplattner/vdpau/" + name "-" version ".tar.bz2")) + (sha256 + (base32 + "0dnpb0yh7v6rvckx82kxg045rd9rbsw25wjv7ad5n8h94s9h2yl5")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("dri2proto" ,dri2proto) + ("libx11" ,libx11 "out") + ("libxext" ,libxext))) + (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/") + (synopsis "Video Decode and Presentation API") + (description "VDPAU is the Video Decode and Presentation API for UNIX. It +provides an interface to video decode acceleration and presentation hardware +present in modern GPUs.") + (license (license:x11-style "file://COPYING")))) -- 2.6.4