diff options
Diffstat (limited to 'src/xyz')
-rw-r--r-- | src/xyz/euandreh/queue.scm | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/xyz/euandreh/queue.scm b/src/xyz/euandreh/queue.scm index 936e084..08c7b5f 100644 --- a/src/xyz/euandreh/queue.scm +++ b/src/xyz/euandreh/queue.scm @@ -1,5 +1,4 @@ (define-module (xyz euandreh queue) - #:use-module ((xyz euandreh heredoc) #:prefix heredoc:) #:use-module ((guix licenses) #:prefix license:) #:use-module (guix download) #:use-module (guix gexp) @@ -29,7 +28,6 @@ #:use-module (gnu packages time) #:use-module (gnu packages tls) #:use-module (gnu packages xml)) -(heredoc:enable-syntax) (define-public python-docx (package @@ -412,11 +410,8 @@ left it off the last time it was used.") (add-before 'configure 'disable-warning-on-non-writable-config-files (lambda _ (substitute* "conf/postfix-script" - ((#"- - find \$todo \\\( -perm -020 -o -perm -002 \\\) \\ - "#) - #"- - # find $todo \( -perm -020 -o -perm -002 \)"#)))) + (("find \\$todo \\\\\\( -perm -020 -o -perm -002 \\\\\\) \\\\\n") + " # find $todo \\( -perm -020 -o -perm -002 \\)")))) (add-before 'configure 'disable-write-to-/etc/postfix (lambda _ (substitute* "src/postconf/postconf_edit.c" |