diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-18 17:19:31 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-18 17:20:27 +0200 |
commit | be528eb53d6c5c6d3ef7d74a02da2e2b97c0ccc6 (patch) | |
tree | be3106290db787ec7582c377c9c2f2b54a7799bf /gnu/packages/aspell.scm | |
parent | cbdac3ce88d97dac03a26bccc6e25df35b332086 (diff) | |
download | guix-be528eb53d6c5c6d3ef7d74a02da2e2b97c0ccc6.tar.gz |
gnu: hunspell-dict-en & variants: Make reproducible.
* gnu/packages/aspell.scm (aspell-word-list)[arguments]: Add a new 'make-reproducible phase. Fixes <http://issues.guix.gnu.org/48499>.
Diffstat (limited to 'gnu/packages/aspell.scm')
-rw-r--r-- | gnu/packages/aspell.scm | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/aspell.scm b/gnu/packages/aspell.scm index e5241c4e46..e19c369517 100644 --- a/gnu/packages/aspell.scm +++ b/gnu/packages/aspell.scm @@ -397,6 +397,10 @@ dictionaries, including personal ones.") (arguments `(#:phases (modify-phases %standard-phases + (add-after 'unpack 'make-reproducible + (lambda _ + (substitute* "speller/README_en.txt.sh" + (("\\bdate\\b") "")))) (delete 'configure) (delete 'check) (replace 'build |