diff options
author | Timothy Sample <samplet@ngyro.com> | 2020-09-02 18:05:36 -0400 |
---|---|---|
committer | Timothy Sample <samplet@ngyro.com> | 2020-09-02 18:09:01 -0400 |
commit | 57983029a9ad86dfad3ae5e352c24557ffae9829 (patch) | |
tree | cdbd4cfbc944a19e9f5c19320e28b052df01e571 /gnu/packages/wm.scm | |
parent | 4ff0fed778172f80d938dfe42716cc9fefeb4fdc (diff) | |
download | guix-57983029a9ad86dfad3ae5e352c24557ffae9829.tar.gz |
gnu: xmonad: Add patch to support dynamic linking.
Fixes <https://bugs.gnu.org/43131>. * gnu/packages/patches/xmonad-dynamic-linking.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it. * gnu/packages/wm.scm (xmonad)[source]: Use it.
Diffstat (limited to 'gnu/packages/wm.scm')
-rw-r--r-- | gnu/packages/wm.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/wm.scm b/gnu/packages/wm.scm index bb5a91a230..15fbf43ec7 100644 --- a/gnu/packages/wm.scm +++ b/gnu/packages/wm.scm @@ -655,7 +655,8 @@ desktop environment.") "xmonad-" version ".tar.gz")) (sha256 (base32 - "0a7rh21k9y6g8fwkggxdxjns2grvvsd5hi2ls4klmqz5xvk4hyaa")))) + "0a7rh21k9y6g8fwkggxdxjns2grvvsd5hi2ls4klmqz5xvk4hyaa")) + (patches (search-patches "xmonad-dynamic-linking.patch")))) (build-system haskell-build-system) (inputs `(("ghc-extensible-exceptions" ,ghc-extensible-exceptions) |