From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:44566) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hrRZz-00037C-G1 for guix-patches@gnu.org; Sat, 27 Jul 2019 14:38:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hrRZy-0007aT-Bl for guix-patches@gnu.org; Sat, 27 Jul 2019 14:38:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:36603) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hrRZy-0007aO-8T for guix-patches@gnu.org; Sat, 27 Jul 2019 14:38:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hrRZy-0002U4-4U for guix-patches@gnu.org; Sat, 27 Jul 2019 14:38:02 -0400 Subject: [bug#36814] [PATCH 2/2] gnu: Add libva-utils. Resent-Message-ID: From: Marius Bakke In-Reply-To: <20190726033037.1203-2-me@tobias.gr> References: <20190726033037.1203-1-me@tobias.gr> <20190726033037.1203-2-me@tobias.gr> Date: Sat, 27 Jul 2019 20:37:46 +0200 Message-ID: <874l374939.fsf@devup.no> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Tobias Geerinckx-Rice , 36814@debbugs.gnu.org --=-=-= Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Tobias Geerinckx-Rice via Guix-patches writes: > * gnu/packages/video.scm (libva-utils): New public variable. > --- > gnu/packages/video.scm | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) > > diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm > index f068c5df65..e16dd13765 100644 > --- a/gnu/packages/video.scm > +++ b/gnu/packages/video.scm > @@ -753,6 +753,40 @@ entry-points (VLD, IDCT, Motion Compensation etc.) f= or prevailing coding > standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, and VC-1/VMW3).") > (license license:expat))) >=20=20 > +(define-public libva-utils > + (package > + (name "libva-utils") > + (version "2.5.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/intel/libva-utils/release= s/download/" > + version "/libva-utils-" version ".tar.bz2")) > + (sha256 > + (base32 "05rasyqnsg522zqxak1q8rrm1hys7wwbi41kd0szjq0d27awjf4j"))= )) > + (build-system gnu-build-system) > + (arguments > + `(#:configure-flags > + (list "--enable-wayland" > + "--enable-x11"))) > + (native-inputs > + `(("pkg-config" ,pkg-config))) > + (inputs > + `(("libdrm" ,libdrm) > + ("libva" ,libva) > + ("libx11" ,libx11) > + ("mesa" ,mesa) > + ("wayland" ,wayland))) > + (home-page "https://01.org/linuxmedia/vaapi") > + (synopsis "Collection of testing utilities for VA-API") > + (description > + "This is a collection of utilities and examples to query and test t= he > +@acronym{VA-API, Video Acceleration API} implemented by the libva librar= y. > + > +These tools require a supported graphics chip, driver, and VA-API back e= nd to > +operate properly.") > + (license license:expat))) LGTM. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAl08mfoACgkQoqBt8qM6 VPpmTQf/bABY9WNE5meiOEs4IMaIn5LyUilzkFrFS2X6sCeTKxfKXHiL0dGKIFxp 9RCNsIgL7pcg2FV24a4DvGRjOYo2Qo1YdNWi/mN0ZraBK9wptHeTWDzjyB6lay0f JoqRXTQvX8cxNnVYSD4dJ4NrkYKXp1PacvfAFAD5TV9gSJNAGyIjhWPEucCVdN0Q Y5Fva0WCz2ciqeYvylNLAMOoTdk+6fbny/ntcKqTf2fEUwY/xcawQrrEWW9aKnl8 O7aS45kpOGwK98NFuJqXbNoGCepIPj3tkXaNVG8iKdy1Ui+mIaBmGBY9v38l2spp yHUNurzXC9Wxsb2uf0sS9B68z3k/Dg== =m0zq -----END PGP SIGNATURE----- --=-=-=--