diff options
author | Antero Mejr <antero@mailbox.org> | 2023-06-04 17:42:29 +0000 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-22 13:17:56 +0100 |
commit | 90cb69dc9203eddaad688dc02a14ed4ead9bf625 (patch) | |
tree | 4d97ee07c034a60be8d7c1092f6097097893943c | |
parent | c08ab74432b5baa548edc3a081b30d29f183d1f7 (diff) | |
download | guix-90cb69dc9203eddaad688dc02a14ed4ead9bf625.tar.gz guix-90cb69dc9203eddaad688dc02a14ed4ead9bf625.zip |
gnu: Add perl-text-brew.
* gnu/packages/perl.scm (perl-text-brew): New variable.
Signed-off-by: Danny Milosavljevic <dannym@friendly-machines.com>
-rw-r--r-- | gnu/packages/perl.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index c82c3a4304..2fe08d6df5 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -11530,6 +11530,27 @@ string mappings, or get at the original form of the data as a list of simple values (strings, macros, or numbers) pasted together.") (license license:perl-license))) +(define-public perl-text-brew + (package + (name "perl-text-brew") + (version "0.02") + (source (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/K/KC/KCIVEY/Text-Brew-" version + ".tar.gz")) + (sha256 + (base32 + "0k7nxglbx5pxl693zrj1fsi094sf1a3vqsrn73inzz7r3j28a6xa")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Text-Brew") + (synopsis "An implementation of the Brew edit distance") + (description + "This module implements the Brew edit distance that is very close to the +dynamic programming technique used for the Wagner-Fischer (and so for the +Levenshtein) edit distance.") + (license (package-license perl)))) + (define-public perl-text-charwidth (package (name "perl-text-charwidth") |