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
* gnu/packages/csv.scm: New file.
* gnu/local.mk: Register it.
Change-Id: Iadf1ea33c273d7ce616546c4c2c0d554ae722029
---
gnu/local.mk | 1 +
gnu/packages/csv.scm | 42 ++++++++++++++++++++++++++++++++++++++++++
2 files changed, 43 insertions(+)
create mode 100644 gnu/packages/csv.scm
diff --git a/gnu/local.mk b/gnu/local.mk
index 5091f93eb8..7193f4daf0 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -230,6 +230,7 @@ GNU_SYSTEM_MODULES = \
%D%/packages/cross-toolchain.scm \
%D%/packages/crypto.scm \
%D%/packages/cryptsetup.scm \
+ %D%/packages/csv.scm \
%D%/packages/cups.scm \
%D%/packages/curl.scm \
%D%/packages/cvassistant.scm \
diff --git a/gnu/packages/csv.scm b/gnu/packages/csv.scm
new file mode 100644
index 0000000000..c08ec03e01
--- /dev/null
+++ b/gnu/packages/csv.scm
@@ -0,0 +1,42 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2025 Sughosha <sughosha <at> disroot.org>
+;;;
+;;; This file is part of GNU Guix.
+;;;
+;;; GNU Guix is free software; you can redistribute it and/or modify it
+;;; under the terms of the GNU General Public License as published by
+;;; the Free Software Foundation; either version 3 of the License, or (at
+;;; your option) any later version.
+;;;
+;;; GNU Guix is distributed in the hope that it will be useful, but
+;;; WITHOUT ANY WARRANTY; without even the implied warranty of
+;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+;;; GNU General Public License for more details.
+;;;
+;;; You should have received a copy of the GNU General Public License
+;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
+
+(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+)))
--
2.47.1
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.