diff options
author | Alex Kost <alezost@gmail.com> | 2015-04-01 22:15:15 +0300 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2015-04-03 15:21:12 +0300 |
commit | 946dc71f632e053083c98f845b04b1bcf1588c02 (patch) | |
tree | 5adb79d7f91e4e65fe8dbac6e64052b98f99f727 /gnu/packages/xorg.scm | |
parent | 0492f4a2b9bf81af9f565404d956285a2c76dd0c (diff) | |
download | guix-946dc71f632e053083c98f845b04b1bcf1588c02.tar.gz |
gnu: xorg: Add patch to fix sis driver crashes.
* gnu/packages/patches/xf86-video-sis-fix-exa-crash.patch: New file. * gnu/packages/xorg.scm (xf86-video-sis): Use it. * gnu-system.am (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/xorg.scm')
-rw-r--r-- | gnu/packages/xorg.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/xorg.scm b/gnu/packages/xorg.scm index cfb4cc1643..998f0803fc 100644 --- a/gnu/packages/xorg.scm +++ b/gnu/packages/xorg.scm @@ -2932,7 +2932,8 @@ graphics cards.") (sha256 (base32 "1l0w84x39gq4y9j81dny9r6rma1xkqvxpsavpkd8h7h8panbcbmy")) - (patches (list (search-patch "xf86-video-sis-update-api.patch"))))) + (patches (list (search-patch "xf86-video-sis-update-api.patch") + (search-patch "xf86-video-sis-fix-exa-crash.patch"))))) (build-system gnu-build-system) (inputs `(("mesa" ,mesa) ("xf86dgaproto" ,xf86dgaproto) |