From: jgart via Guix-patches via <guix-patches@gnu.org>
To: 53248@debbugs.gnu.org
Cc: jgart <jgart@dismail.de>
Subject: [bug#53248] [PATCH] gnu: Add utf-8-lineseparator.
Date: Fri, 14 Jan 2022 02:50:35 -0500 [thread overview]
Message-ID: <20220114075035.1580-1-jgart@dismail.de> (raw)
* gnu/packages/textutils.scm (utf-8-lineseparator): New variable.
---
gnu/packages/textutils.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/textutils.scm b/gnu/packages/textutils.scm
index 3a90fc8da7..5b1ebfdd9d 100644
--- a/gnu/packages/textutils.scm
+++ b/gnu/packages/textutils.scm
@@ -1374,6 +1374,40 @@ (define-public go-github-com-errata-ai-vale
@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
+(CSV) files for valid UTF-8 use, and to report which line endings
+they use.")
+ (license license:expat)))
+
(define-public csvdiff
(package
(name "csvdiff")
--
2.34.1
next reply other threads:[~2022-01-14 8:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-14 7:50 jgart via Guix-patches via [this message]
2022-01-14 8:33 ` [bug#53248] [PATCH v2] gnu: Add utf-8-lineseparator jgart via Guix-patches via
2022-01-23 22:19 ` bug#53248: [PATCH] " Ludovic Courtès
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220114075035.1580-1-jgart@dismail.de \
--to=guix-patches@gnu.org \
--cc=53248@debbugs.gnu.org \
--cc=jgart@dismail.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.