diff options
author | Eric Bavier <bavier@member.fsf.org> | 2014-05-12 11:42:53 -0500 |
---|---|---|
committer | Eric Bavier <bavier@member.fsf.org> | 2014-05-12 16:15:31 -0500 |
commit | f5ea273a001736af3e61207b094556893aa05309 (patch) | |
tree | 35c27c55bd7aac0effe78edfb09841fc1933fed4 /gnu/packages/tcl.scm | |
parent | ab6a279abbfa39b1e1bec0e363744d241972f844 (diff) | |
download | guix-f5ea273a001736af3e61207b094556893aa05309.tar guix-f5ea273a001736af3e61207b094556893aa05309.tar.gz |
gnu: perl-tk: Patch for i686
* gnu/packages/patches/perl-tk-x11-discover.patch: New patch.
* gnu-system.am [dist_patch_DATA]: Add it.
* gnu/packages/tcl.scm (perl-tk)[origin]: Use it.
Diffstat (limited to 'gnu/packages/tcl.scm')
-rw-r--r-- | gnu/packages/tcl.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/tcl.scm b/gnu/packages/tcl.scm index eb4c227049..4859c2be72 100644 --- a/gnu/packages/tcl.scm +++ b/gnu/packages/tcl.scm @@ -23,6 +23,7 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module (guix build-system perl) + #:use-module (gnu packages) #:use-module (gnu packages libpng) #:use-module (gnu packages libjpeg) #:use-module (gnu packages perl) @@ -177,7 +178,8 @@ X11 GUIs.") version ".tar.gz")) (sha256 (base32 - "0jarvplhfvnm0shhdm2a5zczlnk9mkf8jvfjiwyhjrr3cy1gl0w0")))) + "0jarvplhfvnm0shhdm2a5zczlnk9mkf8jvfjiwyhjrr3cy1gl0w0")) + (patches (list (search-patch "perl-tk-x11-discover.patch"))))) (build-system perl-build-system) (native-inputs `(("pkg-config" ,pkg-config))) (inputs `(("libx11" ,libx11) |