summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
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/linux.scm
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/linux.scm')
-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
11009 (license license:bsd-3))) 11009 (license license:bsd-3)))
11010 11010
11011(define-public simpleini 11011(define-public simpleini
11012 (let ((commit "6048871ea9ee0ec24be5bd099d161a10567d7dc2") 11012 (package
11013 (revision "1")) 11013 (name "simpleini")
11014 (package 11014 (version "4.25")
11015 (name "simpleini") 11015 (source (origin
11016 (version (git-version "4.22" revision commit)) 11016 (method git-fetch)
11017 (source (origin 11017 (uri (git-reference
11018 (method git-fetch) 11018 (url "https://github.com/brofield/simpleini")
11019 (uri (git-reference 11019 (commit (string-append "v" version))))
11020 (url "https://github.com/brofield/simpleini") 11020 (file-name (git-file-name name version))
11021 (commit commit))) 11021 (sha256
11022 (file-name (git-file-name name version)) 11022 (base32
11023 (sha256 11023 "1v9s0kr5ca1gdbnlkdz7chzypy0wz95f09l0r6jnmff4qy6db56l"))))
11024 (base32 11024 (build-system cmake-build-system)
11025 "1szaflnrzw1zx9v5g6mbbiaf9wfglp4n4jjq2793k9ryz3qxil9j")))) 11025 (arguments
11026 (build-system cmake-build-system) 11026 (list #:configure-flags #~(list "-DSIMPLEINI_USE_SYSTEM_GTEST=ON")))
11027 (arguments 11027 (native-inputs (list googletest))
11028 (list #:configure-flags #~(list "-DSIMPLEINI_USE_SYSTEM_GTEST=ON"))) 11028 (home-page "https://github.com/brofield/simpleini")
11029 (native-inputs (list googletest)) 11029 (synopsis "Simple API to read and write INI-style files")
11030 (home-page "https://github.com/brofield/simpleini") 11030 (description
11031 (synopsis "Simple API to read and write INI-style files") 11031 "SimpleIni provides a simple API to read and write INI-style
11032 (description
11033 "SimpleIni provides a simple API to read and write INI-style
11034configuration files. It supports data files in ASCII, MBCS and Unicode.") 11032configuration files. It supports data files in ASCII, MBCS and Unicode.")
11035 (license license:expat)))) 11033 (license license:expat)))
11036 11034
11037(define-public xfsprogs 11035(define-public xfsprogs
11038 (package 11036 (package