guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/07: gnu: intel-vaapi-driver: Update to 2.4.1.


From: guix-commits
Subject: 03/07: gnu: intel-vaapi-driver: Update to 2.4.1.
Date: Wed, 3 Jun 2020 00:52:01 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit a0cfa1e21a7792dba8e56c6b60148baf47282ad6
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Jun 3 05:33:02 2020 +0200

    gnu: intel-vaapi-driver: Update to 2.4.1.
    
    * gnu/packages/video.scm (intel-vaapi-driver): Update to 2.4.1.
    [source]: Use GIT-FETCH and GIT-FILE-NAME.
    [native-inputs]: Add autoconf, automake, and libtool.
---
 gnu/packages/video.scm | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 261628d..b2d359c 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -2888,18 +2888,22 @@ of modern, widely supported codecs.")
 (define-public intel-vaapi-driver
   (package
     (name "intel-vaapi-driver")
-    (version "2.4.0")
+    (version "2.4.1")
     (source
      (origin
-       (method url-fetch)
-       (uri (string-append "https://github.com/intel/intel-vaapi-driver/";
-                           "releases/download/" version "/intel-vaapi-driver-"
-                           version ".tar.bz2"))
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/intel/intel-vaapi-driver";)
+             (commit version)))
        (sha256
-        (base32 "12fhydgwpvyh97gxqlgv77wsf9yax321h46vi49j4sxghpcxvqki"))))
+        (base32 "1cidki3av9wnkgwi7fklxbg3bh6kysf8w3fk2qadjr05a92mx3zp"))
+       (file-name (git-file-name name version))))
     (build-system gnu-build-system)
     (native-inputs
-     `(("pkg-config" ,pkg-config)))
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("libtool" ,libtool)
+       ("pkg-config" ,pkg-config)))
     (inputs
      `(("libdrm" ,libdrm)
        ("libva" ,libva)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]