diff options
author | jgart | 2022-01-26 15:14:35 -0500 |
---|---|---|
committer | jgart | 2022-01-26 15:14:35 -0500 |
commit | ef648ccca963ff701cb6ed818a850f483cf954a1 (patch) | |
tree | 25e3e42803fd02b269489cf349bbedb2415979f7 /gn/packages/quality-control.scm | |
parent | 94f6951f33dd801d30afcd9e547498345a7f1f1d (diff) | |
download | guix-bioinformatics-ef648ccca963ff701cb6ed818a850f483cf954a1.tar.gz |
gn: packages: quality-control: remove utf-8-lineseparator
* upstreamed to GNU Guix
Diffstat (limited to 'gn/packages/quality-control.scm')
-rw-r--r-- | gn/packages/quality-control.scm | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/gn/packages/quality-control.scm b/gn/packages/quality-control.scm index 60fafb4..162b025 100644 --- a/gn/packages/quality-control.scm +++ b/gn/packages/quality-control.scm @@ -7,39 +7,6 @@ #:use-module (guix build-system gnu) #:use-module (gnu packages)) -(define-public utf-8-lineseparator - (package - (name "utf-8-lineseparator") - (version "7") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/pflanze/utf-8-lineseparator") - (commit (string-append version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0lqwfrwq28246lja2gawf5jllh4smddswkpd5lscvc2ynylcmmzx")))) - (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 libcsv (let ((commit "b1d5212831842ee5869d99bc208a21837e4037d5") (revision "0")) |