cxxopts: 3.2.1 -> 3.3.1

fix #411129

https://github.com/jarro2783/cxxopts/releases/tag/v3.3.1

Notable changes here:

- gcc 15 compat
- cmake 4 compat

Co-authored-by: Grimmauld <soeren@benjos.de>
This commit is contained in:
Guilhem Saurel
2025-09-26 08:42:53 +02:00
co-authored by Grimmauld
parent 0007e799fb
commit 0693b8d334
+5 -5
View File
@@ -8,15 +8,15 @@
enableUnicodeHelp ? true,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "cxxopts";
version = "3.2.1";
version = "3.3.1";
src = fetchFromGitHub {
owner = "jarro2783";
repo = "cxxopts";
rev = "v${version}";
sha256 = "sha256-aOF3owz7SIV4trJY0PnMtIcwqoUpDbB3tNxZcsl9dzM=";
rev = "v${finalAttrs.version}";
hash = "sha256-baM6EX9D0yfrKxuPXyUUV9RqdrVLyygeG6x57xN8lc4=";
};
buildInputs = lib.optionals enableUnicodeHelp [ icu74.dev ];
@@ -44,4 +44,4 @@ stdenv.mkDerivation rec {
maintainers = [ maintainers.spease ];
platforms = platforms.all;
};
}
})