diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-01 02:00:02 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-05-01 02:00:20 +0200 |
commit | d2c5754ef1616ead0150abc4ad4b73718608848a (patch) | |
tree | d66ac4c0812441f7ad4dcb8a5d48b1d82490f422 | |
parent | d1c3e35e8fa192b6eefd3902fa4666866eb5e951 (diff) | |
download | guix-d2c5754ef1616ead0150abc4ad4b73718608848a.tar.gz |
gnu: ispell: Update to 3.4.05.
* gnu/packages/aspell.scm (ispell): Update to 3.4.05. [arguments]: Don't explicitly return #t from phases.
-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 |