GNU bug report logs -
#75009
[PATCH] gnu: Add tellico.
Previous Next
Reported by: Sughosha <sughosha <at> disroot.org>
Date: Sat, 21 Dec 2024 16:25:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Sughosha via Guix-patches via <guix-patches <at> gnu.org> writes:
> * gnu/packages/csv.scm: New file.
[...]
> +
> +(define-module (gnu packages csv)
> + #:use-module (guix packages)
> + #:use-module (guix download)
> + #:use-module (guix build-system gnu)
> + #:use-module ((guix licenses) #:prefix license:))
> +
> +(define-public libcsv
> + (package
> + (name "libcsv")
> + (version "3.0.3")
> + (source (origin
> + (method url-fetch)
> + (uri (string-append "mirror://sourceforge/libcsv/libcsv/libcsv-"
> + version "/libcsv-" version ".tar.gz"))
> + (sha256
> + (base32
> + "1r6pxdxrc3vfil1f9ng1dblm82asdqz6hkz7dj4vkkh3p0f47h6r"))))
> + (build-system gnu-build-system)
> + (home-page "http://sourceforge.net/projects/libcsv/")
> + (synopsis "CSV parser and writer library")
> + (description
> + "The CSV library provides a flexible, intuitive interface for parsing and
> +writing csv data.")
> + (license license:lgpl2.1+)))
This should go into gnu/packages/serialization.scm, There is no need to
add a separate file.
[signature.asc (application/pgp-signature, inline)]
This bug report was last modified 153 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.