diff options
author | jgart <jgart@dismail.de> | 2022-01-14 03:33:10 -0500 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-01-23 23:14:33 +0100 |
commit | aeeaf4eef40811d2f934cff914ba31dbbf04d449 (patch) | |
tree | 9eed33a0ed47fd45cf474cb091966b826a11c032 /gnu/packages/textutils.scm | |
parent | 68eda259647213aefd6ca82ee101e344d837d2da (diff) | |
download | guix-aeeaf4eef40811d2f934cff914ba31dbbf04d449.tar.gz |
gnu: Add utf-8-lineseparator.
* gnu/packages/textutils.scm (utf-8-lineseparator): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/textutils.scm')
-rw-r--r-- | gnu/packages/textutils.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm index 3a90fc8da7..12e3d3b3c8 100644 --- a/gnu/packages/textutils.scm +++ b/gnu/packages/textutils.scm @@ -1374,6 +1374,39 @@ around it also has a list of style guides implemented with Vale in @url{https://github.com/errata-ai/styles, their styles repo}.") (license license:expat))) +(define-public utf-8-lineseparator + (package + (name "utf-8-lineseparator") + (version "cj3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pflanze/utf-8-lineseparator") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1xnbcanqn5jr965gw9195ij6hz04clfm77m5776dysn9nykn20w1")))) + (build-system gnu-build-system) + (arguments + `(#:make-flags + (list + (string-append "CC=" ,(cc-for-target))) + #:phases + (modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (install-file "utf-8-lineseparator" bin))))))) + (home-page "https://github.com/pflanze/utf-8-lineseparator") + (synopsis "Line ending detection library") + (description +"@code{utf-8-lineseparator} provides a tool to efficiently check text +files for valid UTF-8 use and to report which line endings they use.") + (license license:expat))) + (define-public csvdiff (package (name "csvdiff") |