blob: 162b025719f1cbc67c77772f1a50dc4a1669a1ea (
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
|
(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 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+))))
|