diff options
author | Mark H Weaver <mhw@netris.org> | 2014-02-13 00:42:41 -0500 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2014-02-16 16:39:37 -0500 |
commit | 445c5abad8032f000387f36cc0533556289e5175 (patch) | |
tree | 788d154b01b31e5d015dc904e1af61bab93ea31e /gnu/packages/ratpoison.scm | |
parent | 686e637ed283b82a8b254c0ea77f20aec4b827ff (diff) | |
download | patches-445c5abad8032f000387f36cc0533556289e5175.tar patches-445c5abad8032f000387f36cc0533556289e5175.tar.gz |
gnu: ratpoison: Patch to use $SHELL instead of /bin/sh.
* gnu/packages/patches/ratpoison-shell.patch: New file.
* gnu/packages/ratpoison.scm (ratpoison): Add patch.
* gnu-system.am (dist_patch_DATA): Add patch.
Diffstat (limited to 'gnu/packages/ratpoison.scm')
-rw-r--r-- | gnu/packages/ratpoison.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/ratpoison.scm b/gnu/packages/ratpoison.scm index fb1bfd8516..aabd1d330c 100644 --- a/gnu/packages/ratpoison.scm +++ b/gnu/packages/ratpoison.scm @@ -21,6 +21,7 @@ #:use-module (guix download) #:use-module (guix build-system gnu) #:use-module ((guix licenses) #:select (gpl2+)) + #:use-module (gnu packages) #:use-module (gnu packages xorg) #:use-module (gnu packages perl) #:use-module (gnu packages readline) @@ -37,7 +38,8 @@ version ".tar.xz")) (sha256 (base32 - "0v4mh8d3vsh5xbbycfdl3g8zfygi1rkslh1x7k5hi1d05bfq3cdr")))) + "0v4mh8d3vsh5xbbycfdl3g8zfygi1rkslh1x7k5hi1d05bfq3cdr")) + (patches (list (search-patch "ratpoison-shell.patch"))))) (build-system gnu-build-system) (inputs `(("libXi" ,libxi) |