[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/05: gnu: libevdi: Update to 1.14.1.
From: |
guix-commits |
Subject: |
02/05: gnu: libevdi: Update to 1.14.1. |
Date: |
Sat, 16 Sep 2023 05:43:25 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 6f9d658e63ab3d3e57d330d226bb5d35c66ef0eb
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Sep 10 02:00:00 2023 +0200
gnu: libevdi: Update to 1.14.1.
* gnu/packages/linux.scm (libevdi): Update to 1.14.1.
[source]: Use a Git tag.
---
gnu/packages/linux.scm | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 73fa52e487..8f420d0178 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -9977,20 +9977,20 @@ libraries are found or why they cannot be located.")
(define-public libevdi
(package
(name "libevdi")
- (version "1.12.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/DisplayLink/evdi")
- (commit "bdc258b25df4d00f222fde0e3c5003bf88ef17b5")))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1yi7mbyvxm9lsx6i1xbwp2bihwgzhwxkydk1kbngw5a5kw9azpws"))))
+ (version "1.14.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/DisplayLink/evdi")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0vfbph6bdb206zgdp0bvpqck2zvkx1367xdxbavv41qsmgkxhvbs"))))
(build-system gnu-build-system)
(inputs (list libdrm))
(arguments
- (list #:tests? #f ;no test suite
+ (list #:tests? #f ;no test suite
#:make-flags #~'("CC=gcc")
#:phases #~(modify-phases %standard-phases
(delete 'configure)