blob: 60fafb4d48f6bc88fc52f7bddf2b19d43ec3601a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
(define-module (gn packages quality-control)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix utils)
#:use-module (guix download)
#:use-module (guix git-download)
#: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"))
(package
(name "libcsv")
(version commit)
(source
(origin
(method git-fetch)
(uri
(git-reference
(url "https://github.com/rgamble/libcsv")
(commit commit)))
(file-name (git-file-name name commit))
(sha256
(base32 "0nni9y0prz8lh3dywbha52yfg8qcf3dn0nb7iinfwlrmmamfyzg2"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
(list (string-append "CC=" ,(cc-for-target)))))
(home-page "https://github.com/rgamble/libcsv")
(synopsis "CSV library written in pure ANSI C")
(description
"CSV library written in pure ANSI C that can read and write CSV data.")
(license license:lgpl2.1+))))
|