~ruther/guix-local

2d72468698badc18c81d99aee76630609484ae4c — Nicolas Goaziou 1 year, 5 months ago d48da2d
gnu: Add simpleini.

* gnu/packages/linux.scm (simpleini): New variable.

Change-Id: Ib5e582fd234e6dd302c109d9548650f8d36271a5
1 files changed, 27 insertions(+), 1 deletions(-)

M gnu/packages/linux.scm
M gnu/packages/linux.scm => gnu/packages/linux.scm +27 -1
@@ 11,7 11,7 @@
;;; Copyright © 2016, 2017 Alex Kost <alezost@gmail.com>
;;; Copyright © 2016 Raymond Nicholson <rain1@openmailbox.org>
;;; Copyright © 2016 Mathieu Lirzin <mthl@gnu.org>
;;; Copyright © 2016, 2018-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2016, 2018-2023, 2025 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2016, 2018, 2019, 2020, 2021, 2022, 2023 Ricardo Wurmus <rekado@elephly.net>
;;; Copyright © 2016 David Craven <david@craven.ch>
;;; Copyright © 2016 John Darrington <jmd@gnu.org>


@@ 9579,6 9579,32 @@ compatible with Python's ConfigParser style of .INI files, including RFC
822-style multi-line syntax and name: value entries.")
    (license license:bsd-3)))

(define-public simpleini
  (let ((commit "6048871ea9ee0ec24be5bd099d161a10567d7dc2")
        (revision "1"))
    (package
      (name "simpleini")
      (version (git-version "4.22" revision commit))
      (source (origin
                (method git-fetch)
                (uri (git-reference
                      (url "https://github.com/brofield/simpleini")
                      (commit commit)))
                (file-name (git-file-name name version))
                (sha256
                 (base32
                  "1szaflnrzw1zx9v5g6mbbiaf9wfglp4n4jjq2793k9ryz3qxil9j"))))
      (build-system cmake-build-system)
      (arguments
       (list #:configure-flags #~(list "-DSIMPLEINI_USE_SYSTEM_GTEST=ON")))
      (native-inputs (list googletest))
      (home-page "https://github.com/brofield/simpleini")
      (synopsis "Simple API to read and write INI-style files")
      (description
       "SimpleIni provides a simple API to read and write INI-style
configuration files.  It supports data files in ASCII, MBCS and Unicode.")
      (license license:expat))))

(define-public xfsprogs
  (package
    (name "xfsprogs")