diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2024-01-04 00:03:40 -0500 |
---|---|---|
committer | John Kehayias <john.kehayias@protonmail.com> | 2024-01-04 00:03:40 -0500 |
commit | ef4e4c9a2ccc1678182fa6e4409fff13c669fd14 (patch) | |
tree | d1f097787a69fa3a7089f26ecfed8b5c267883db /gnu/packages/guile-xyz.scm | |
parent | 42c448ee6e13d165807d83e8c48941bead4847c1 (diff) | |
parent | 7b0863f07a113caef26fea13909bd97d250b629e (diff) |
Merge branch 'master' into mesa-updates
Change-Id: I46ca25bea98d25150877421c6d5161752afabb25
Diffstat (limited to 'gnu/packages/guile-xyz.scm')
-rw-r--r-- | gnu/packages/guile-xyz.scm | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm index 7b44dc3167..afd8900848 100644 --- a/gnu/packages/guile-xyz.scm +++ b/gnu/packages/guile-xyz.scm @@ -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 |