me
/
guix
Archived
1
0
Fork 0

gnu: guile-udev: Update to 0.3.0.

* gnu/packages/guile-xyz.scm (guile-udev): Update to 0.3.0.
[arguments]: Move check phase after install phase.

Change-Id: I0cf0683e9ea3e73b9e5b44892796d79925937b4e
master
Maxim Cournoyer 2023-12-29 22:39:06 -05:00
parent f76ca2b0e8
commit 3d445618a1
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 6 additions and 3 deletions

View File

@ -2267,7 +2267,7 @@ users and in some situations.")
(define-public guile-udev
(package
(name "guile-udev")
(version "0.2.4")
(version "0.3.0")
(source (origin
(method git-fetch)
(uri (git-reference
@ -2276,7 +2276,7 @@ users and in some situations.")
(file-name (git-file-name name version))
(sha256
(base32
"1q1snj8gz2bvqw2v2jvwlzn5xfh7f7wlp922isnzismrp4adc918"))))
"0zvn7ph6sbz5q8jnbkrxxlbxlyf0j8q34hr4a2yxklvg29ya7sd3"))))
(build-system gnu-build-system)
(arguments
(list
@ -2289,7 +2289,10 @@ users and in some situations.")
(substitute* (find-files "." "\\.scm")
(("load-extension \"libguile-udev\"")
(format #f "load-extension \"~a/lib/libguile-udev.so\""
#$output))))))))
#$output)))))
(delete 'check) ;moved after install
(add-after 'install 'check
(assoc-ref %standard-phases 'check)))))
(native-inputs (list autoconf
automake
gettext-minimal