From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47105) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWnp9-0001NA-Fi for guix-patches@gnu.org; Tue, 11 Dec 2018 14:36:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWnp4-00031e-Gp for guix-patches@gnu.org; Tue, 11 Dec 2018 14:36:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:39939) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gWnp4-00031R-BJ for guix-patches@gnu.org; Tue, 11 Dec 2018 14:36:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gWnp4-0005FN-7I for guix-patches@gnu.org; Tue, 11 Dec 2018 14:36:02 -0500 Subject: [bug#33710] [PATCH] gnu: Add dav1d. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWno8-0001EU-FK for guix-patches@gnu.org; Tue, 11 Dec 2018 14:35:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gWno3-0001t2-GQ for guix-patches@gnu.org; Tue, 11 Dec 2018 14:35:04 -0500 Received: from flashner.co.il ([178.62.234.194]:34916) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gWno3-0001sW-9a for guix-patches@gnu.org; Tue, 11 Dec 2018 14:34:59 -0500 From: Efraim Flashner Date: Tue, 11 Dec 2018 21:34:47 +0200 Message-Id: <20181211193447.11765-1-efraim@flashner.co.il> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 33710@debbugs.gnu.org * gnu/packages/video.scm (dav1d): New variable. --- gnu/packages/video.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index fc6caf3ff..67c0cccaa 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3264,3 +3264,23 @@ API. It includes bindings for Python, Ruby, and o= ther languages.") helps you create the film you have always dreamed of. Easily add sub-ti= tles, transitions, and effects and then export your film to many common format= s.") (license license:gpl3+))) + +(define-public dav1d + (package + (name "dav1d") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (string-append "https://downloads.videolan.org/pub/videolan= /" + "dav1d/" version "/dav1d-" version ".tar.xz"= )) + (sha256 + (base32 + "0dw0liday8cbyrirhm6bgzhxg4cdy66nspfkdlq338gdsfqcvrsc")))) + (build-system meson-build-system) + (native-inputs `(("nasm" ,nasm))) + (home-page "https://code.videolan.org/videolan/dav1d") + (synopsis "AV1 decoder") + (description "dav1d is a new AV1 cross-platform decoder, open-source= , and +focused on speed and correctness.") + (license license:bsd-2))) --=20 2.19.2