nixpkgs/pkgs/development/libraries/cxxopts/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.1 KiB
Nix
Raw Normal View History

2022-01-05 17:44:38 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, icu
, pkg-config
, enableUnicodeHelp ? true
}:
2021-01-22 06:22:23 +00:00
stdenv.mkDerivation rec {
2022-02-23 20:00:06 +00:00
pname = "cxxopts";
2024-02-20 20:36:43 +00:00
version = "3.2.1";
2021-01-22 06:22:23 +00:00
src = fetchFromGitHub {
owner = "jarro2783";
2022-02-23 20:00:06 +00:00
repo = "cxxopts";
2022-01-05 17:44:38 +00:00
rev = "v${version}";
2024-02-20 20:36:43 +00:00
sha256 = "sha256-aOF3owz7SIV4trJY0PnMtIcwqoUpDbB3tNxZcsl9dzM=";
2021-01-22 06:22:23 +00:00
};
buildInputs = lib.optionals enableUnicodeHelp [ icu.dev ];
cmakeFlags = [ "-DCXXOPTS_BUILD_EXAMPLES=OFF" ]
2022-01-05 17:44:38 +00:00
++ lib.optional enableUnicodeHelp "-DCXXOPTS_USE_UNICODE_HELP=TRUE";
nativeBuildInputs = [ cmake ] ++ lib.optionals enableUnicodeHelp [ pkg-config ];
2021-01-22 06:22:23 +00:00
doCheck = true;
# Conflict on case-insensitive filesystems.
dontUseCmakeBuildDir = true;
2022-05-16 12:41:07 +00:00
# https://github.com/jarro2783/cxxopts/issues/332
postPatch = ''
substituteInPlace packaging/pkgconfig.pc.in \
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
'';
2021-01-22 06:22:23 +00:00
meta = with lib; {
homepage = "https://github.com/jarro2783/cxxopts";
description = "Lightweight C++ GNU-style option parser library";
license = licenses.mit;
maintainers = [ maintainers.spease ];
platforms = platforms.all;
};
}