summaryrefslogtreecommitdiff
path: root/gnu/packages/linux.scm
diff options
context:
space:
mode:
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