diff options
author | Andreas Enge <andreas@enge.fr> | 2015-02-20 21:53:07 +0100 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2015-02-21 10:17:10 +0100 |
commit | a34816ef6e0abc91530701afe9d112da54edd499 (patch) | |
tree | 6ad41a24bc6d488545015fd41d18d6667decfe9c /gnu/packages/ebook.scm | |
parent | cc9b70d3ea708e4364b0a090d8a6efebabd8c0e9 (diff) | |
download | patches-a34816ef6e0abc91530701afe9d112da54edd499.tar patches-a34816ef6e0abc91530701afe9d112da54edd499.tar.gz |
gnu: chmlib: Patch for compilation on mips.
* gnu/packages/patches/chmlib-inttypes.patch: New file.
* gnu-system.am (dist_patch_DATA): Register patch.
* gnu/packages/ebook.scm (chmlib): Apply patch.
Diffstat (limited to 'gnu/packages/ebook.scm')
-rw-r--r-- | gnu/packages/ebook.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/ebook.scm b/gnu/packages/ebook.scm index f34966c762..e4d609aaf2 100644 --- a/gnu/packages/ebook.scm +++ b/gnu/packages/ebook.scm @@ -20,7 +20,8 @@ #:use-module ((guix licenses) #:select (lgpl2.1+)) #:use-module (guix packages) #:use-module (guix download) - #:use-module (guix build-system gnu)) + #:use-module (guix build-system gnu) + #:use-module (gnu packages)) (define-public chmlib (package @@ -32,7 +33,8 @@ version ".tar.bz2")) (sha256 (base32 - "18zzb4x3z0d7fjh1x5439bs62dmgsi4c1pg3qyr7h5gp1i5xcj9l")))) + "18zzb4x3z0d7fjh1x5439bs62dmgsi4c1pg3qyr7h5gp1i5xcj9l")) + (patches (list (search-patch "chmlib-inttypes.patch"))))) (build-system gnu-build-system) (home-page "http://www.jedrea.com/chmlib/") (synopsis "Library for CHM files") |