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
This commit is contained in:
parent
f76ca2b0e8
commit
3d445618a1
@ -2267,7 +2267,7 @@ users and in some situations.")
|
|||||||
(define-public guile-udev
|
(define-public guile-udev
|
||||||
(package
|
(package
|
||||||
(name "guile-udev")
|
(name "guile-udev")
|
||||||
(version "0.2.4")
|
(version "0.3.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
@ -2276,7 +2276,7 @@ users and in some situations.")
|
|||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1q1snj8gz2bvqw2v2jvwlzn5xfh7f7wlp922isnzismrp4adc918"))))
|
"0zvn7ph6sbz5q8jnbkrxxlbxlyf0j8q34hr4a2yxklvg29ya7sd3"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
(list
|
(list
|
||||||
@ -2289,7 +2289,10 @@ users and in some situations.")
|
|||||||
(substitute* (find-files "." "\\.scm")
|
(substitute* (find-files "." "\\.scm")
|
||||||
(("load-extension \"libguile-udev\"")
|
(("load-extension \"libguile-udev\"")
|
||||||
(format #f "load-extension \"~a/lib/libguile-udev.so\""
|
(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
|
(native-inputs (list autoconf
|
||||||
automake
|
automake
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
|
Loading…
x
Reference in New Issue
Block a user