diff options
author | John Kehayias <john.kehayias@protonmail.com> | 2022-05-04 15:34:09 -0400 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2022-05-09 09:58:25 +0200 |
commit | 7bacea65acc10c16e51c2f78d0bd443206a861e4 (patch) | |
tree | cf1f86fe8ff10a53130b913a12ad02719ff7b282 | |
parent | 09e720309ebcd1d75ef5a59737fe9876897422fe (diff) | |
download | guix-7bacea65acc10c16e51c2f78d0bd443206a861e4.tar.gz |
gnu: mangohud: Update to 0.6.7.
* gnu/packages/graphics.scm (mangohud): Update to 0.6.7. [phases]{patch-paths}: Remove loader_libdrm.cpp path patch as the file has been removed. [inputs]: Remove libdrm input, no longer needed. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
-rw-r--r-- | gnu/packages/graphics.scm | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/packages/graphics.scm b/gnu/packages/graphics.scm index 2cc75d57cf..9f93205183 100644 --- a/gnu/packages/graphics.scm +++ b/gnu/packages/graphics.scm @@ -872,7 +872,7 @@ distills complex, animated scenes into a set of baked geometric results.") (define-public mangohud (package (name "mangohud") - (version "0.6.6-1") + (version "0.6.7") (source (origin (method git-fetch) @@ -881,7 +881,7 @@ distills complex, animated scenes into a set of baked geometric results.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ka004wxkajmvs5vy60r4ckm7f169c61rrd46w6gywkaqf5yp1ab")))) + (base32 "0n2x6agv2j8nd6h1998dqsphb7k57zx8vsayv47dqix28kg5kixz")))) (build-system meson-build-system) (arguments (list @@ -912,11 +912,6 @@ distills complex, animated scenes into a set of baked geometric results.") (substitute* "src/meson.build" (("\\\\\\$LIB") "lib")) - (substitute* "src/loaders/loader_libdrm.cpp" - (("libdrm.so.2") - (search-input-file inputs "lib/libdrm.so.2")) - (("libdrm_amdgpu.so.1") - (search-input-file inputs "lib/libdrm_amdgpu.so.1"))) (substitute* "src/overlay.cpp" (("glxinfo") (search-input-file inputs "bin/glxinfo"))) @@ -934,7 +929,6 @@ distills complex, animated scenes into a set of baked geometric results.") glslang `(,hwdata "pci") imgui-1.86 - libdrm libx11 mesa mesa-utils |