2021-01-22 06:22:23 +00:00
|
|
|
{ cmake, fetchFromGitHub, icu, lib, pkg-config, stdenv, enableUnicodeHelp ? true }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "cxxopts";
|
2021-04-02 19:11:51 +01:00
|
|
|
version = "unstable-2020-12-14";
|
2021-01-22 06:22:23 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jarro2783";
|
|
|
|
repo = name;
|
2021-04-02 19:11:51 +01:00
|
|
|
rev = "2d8e17c4f88efce80e274cb03eeb902e055a91d3";
|
|
|
|
sha256 = "0pwrac81zfqjs17g3hx8r3ds2xf04npb6mz111qjy4bx17314ib7";
|
2021-01-22 06:22:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = lib.optional enableUnicodeHelp [ icu.dev ];
|
|
|
|
cmakeFlags = lib.optional enableUnicodeHelp [ "-DCXXOPTS_USE_UNICODE_HELP=TRUE" ];
|
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optional enableUnicodeHelp [ pkg-config ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
}
|