From mboxrd@z Thu Jan 1 00:00:00 1970 From: Efraim Flashner Subject: [PATCH 2/2] gnu: Add vdpauinfo. Date: Mon, 21 Dec 2015 16:45:07 +0200 Message-ID: <1450709107-16450-3-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]:59630) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB1jM-0006Tl-LQ for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:33 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aB1jL-0000g9-Gn for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:32 -0500 Received: from flashner.co.il ([178.62.234.194]:47285) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aB1jL-0000fs-AH for guix-devel@gnu.org; Mon, 21 Dec 2015 09:46:31 -0500 Received: from localhost.localdomain (unknown [37.26.149.131]) by flashner.co.il (Postfix) with ESMTPSA id 6A1BE4030D for ; Mon, 21 Dec 2015 14:46:25 +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 (vdpauinfo): New variable. --- gnu/packages/video.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 5b3cccb..7cfa8d7 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -1327,3 +1327,27 @@ and JACK.") provides an interface to video decode acceleration and presentation hardware present in modern GPUs.") (license (license:x11-style "file://COPYING")))) + +(define-public vdpauinfo + (package + (name "vdpauinfo") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://secure.freedesktop.org/~aplattner/vdpau/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "1i2b0k9h8r0lnxlrkgqzmrjakgaw3f1ygqqwzx8w6676g85rcm20")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config) + ("libx11" ,libx11))) + (propagated-inputs + `(("libvdpau" ,libvdpau))) + (home-page "https://wiki.freedesktop.org/www/Software/VDPAU/") + (synopsis "Tool to query the capabilities of a VDPAU implementation") + (description "Vdpauinfo is a tool to query the capabilities of a VDPAU +implementation.") + (license (license:x11-style "file://COPYING")))) -- 2.6.4