diff options
author | Pierre Langlois <pierre.langlois@gmx.com> | 2021-12-06 20:41:18 +0000 |
---|---|---|
committer | Pierre Langlois <pierre.langlois@gmx.com> | 2021-12-06 20:41:18 +0000 |
commit | 4afacd45460241f58508d037d6ed2b3c5ee0973b (patch) | |
tree | 6199c57b61644fd213fe6987b47137492679ec4b /gnu/packages/music.scm | |
parent | 8662057130f061170ebb21c8f51c1e7ed72965ff (diff) | |
download | guix-4afacd45460241f58508d037d6ed2b3c5ee0973b.tar.gz |
gnu: helm: Fix build with GCC 9 and later.
* gnu/packages/music.scm (helm)[origin]: Add patch. * gnu/packages/patches/helm-fix-gcc-9-build.patch: New file. * gnu/local.mk (dist_patch_DATA): Register it.
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 28dbf1b624..6d04aae59c 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -6396,7 +6396,9 @@ MIDI drums and comes as two separate drumkits: Black Pearl and Red Zeppelin.") (file-name (git-file-name name version)) (sha256 (base32 - "17ys2vvhncx9i3ydg3xwgz1d3gqv4yr5mqi7vr0i0ca6nad6x3d4")))) + "17ys2vvhncx9i3ydg3xwgz1d3gqv4yr5mqi7vr0i0ca6nad6x3d4")) + ;; Apply GCC 9 fixes from https://github.com/mtytel/helm/pull/233 + (patches (search-patches "helm-fix-gcc-9-build.patch")))) (build-system gnu-build-system) (arguments `(#:tests? #f ; no "check" target |