summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorArtyom V. Poptsov <poptsov.artyom@gmail.com>2026-04-03 08:41:37 +0300
committerArtyom V. Poptsov <poptsov.artyom@gmail.com>2026-04-03 08:51:33 +0300
commitd2487434fe1dfa310341043dfc26af5e96f65023 (patch)
treee1fdd1c9095009c53ab246714ece23e3ad177cfa /gnu/packages
parent38d35941ca8e7de2c41747464c75661d07e9f45d (diff)
gnu: simpleini: Update to 4.25.
* gnu/packages/linux.scm (simpleini): Update to 4.25. Change-Id: I6431e731840f8274a3c7ded7b803b4b636798177
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/linux.scm44
1 files changed, 21 insertions, 23 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 14600b3b7c7..088eecee12b 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -11009,30 +11009,28 @@ compatible with Python's ConfigParser style of .INI files, including RFC
(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
+ (package
+ (name "simpleini")
+ (version "4.25")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/brofield/simpleini")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1v9s0kr5ca1gdbnlkdz7chzypy0wz95f09l0r6jnmff4qy6db56l"))))
+ (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))))
+ (license license:expat)))
(define-public xfsprogs
(package