diff options
author | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-06-08 14:46:24 +0200 |
commit | 8c3e9da13a3c92a7db308db8c0d81cb474ad7799 (patch) | |
tree | 88d06952aa5cc3a9c4991d9c43eb7950ff174fe1 /gnu/packages/aspell.scm | |
parent | 5439c04ebdb7b6405f5ea2446b375f1d155a8d95 (diff) | |
parent | 0c5299200ffcd16370f047b7ccb187c60f30da34 (diff) |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/aspell.scm')
-rw-r--r-- | gnu/packages/aspell.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index 714e0af084..ef225ac64d 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -490,14 +490,14 @@ under permissive licensing terms. See the 'Copyright' file.")))) (define-public ispell (package (name "ispell") - (version "3.4.04") + (version "3.4.05") (source (origin (method url-fetch) (uri (string-append "https://www.cs.hmc.edu/~geoff/tars/ispell-" version ".tar.gz")) (sha256 - (base32 "0gp1rwn8grkvz28wgisc2j9w9svldnaiahl3lyis118xabqddg47")))) + (base32 "00jni7gvdswjd9sdwip5ixnvjg2qzv56mn3m8gdgl9gxwgnns36g")))) (build-system gnu-build-system) (arguments `(#:parallel-build? #f @@ -520,8 +520,7 @@ under permissive licensing terms. See the 'Copyright' file.")))) (format port "#define BINDIR \"~a/bin\"~%" out) (format port "#define LIBDIR \"~a/lib/ispell\"~%" out) (format port "#define MAN1DIR \"~a/share/man/man1\"~%" out) - (format port "#define MAN45DIR \"~a/share/man/man5\"~%" out)))) - #t))))) + (format port "#define MAN45DIR \"~a/share/man/man5\"~%" out))))))))) (inputs (list grep ncurses)) (native-inputs |