unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#33710] [PATCH] gnu: Add dav1d.
@ 2018-12-11 19:34 Efraim Flashner
  2018-12-12  1:21 ` Eric Bavier
  0 siblings, 1 reply; 3+ messages in thread
From: Efraim Flashner @ 2018-12-11 19:34 UTC (permalink / raw)
  To: 33710

* 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 other languages.")
 helps you create the film you have always dreamed of.  Easily add sub-titles,
 transitions, and effects and then export your film to many common formats.")
     (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)))
-- 
2.19.2

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [bug#33710] [PATCH] gnu: Add dav1d.
  2018-12-11 19:34 [bug#33710] [PATCH] gnu: Add dav1d Efraim Flashner
@ 2018-12-12  1:21 ` Eric Bavier
  2018-12-12  7:25   ` bug#33710: " Efraim Flashner
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Bavier @ 2018-12-12  1:21 UTC (permalink / raw)
  To: Efraim Flashner; +Cc: 33710

[-- Attachment #1: Type: text/plain, Size: 1536 bytes --]

On Tue, 11 Dec 2018 21:34:47 +0200
Efraim Flashner <efraim@flashner.co.il> wrote:

> * 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 other languages.")
>  helps you create the film you have always dreamed of.  Easily add sub-titles,
>  transitions, and effects and then export your film to many common formats.")
>      (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

We do not need to mention the "open-source" nature of the software.

> +focused on speed and correctness.")
> +    (license license:bsd-2)))


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* bug#33710: [PATCH] gnu: Add dav1d.
  2018-12-12  1:21 ` Eric Bavier
@ 2018-12-12  7:25   ` Efraim Flashner
  0 siblings, 0 replies; 3+ messages in thread
From: Efraim Flashner @ 2018-12-12  7:25 UTC (permalink / raw)
  To: Eric Bavier; +Cc: 33710-done

[-- Attachment #1: Type: text/plain, Size: 1931 bytes --]

On Tue, Dec 11, 2018 at 07:21:24PM -0600, Eric Bavier wrote:
> On Tue, 11 Dec 2018 21:34:47 +0200
> Efraim Flashner <efraim@flashner.co.il> wrote:
> 
> > * 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 other languages.")
> >  helps you create the film you have always dreamed of.  Easily add sub-titles,
> >  transitions, and effects and then export your film to many common formats.")
> >      (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
> 
> We do not need to mention the "open-source" nature of the software.
> 

Not sure how I missed that one

> > +focused on speed and correctness.")
> > +    (license license:bsd-2)))
> 



-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-12-12  7:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-11 19:34 [bug#33710] [PATCH] gnu: Add dav1d Efraim Flashner
2018-12-12  1:21 ` Eric Bavier
2018-12-12  7:25   ` bug#33710: " Efraim Flashner

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).