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

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

42 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";
2022-01-05 17:44:38 +00:00
version = "3.0.0";
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}";
sha256 = "08x7j168l1xwj0r3rv89cgghmfhsx98lpq35r3vkh504m1pd55a6";
2021-01-22 06:22:23 +00:00
};
2022-01-05 17:44:38 +00:00
# CMake does not set CMAKE_LIBRARY_ARCHITECTURE variable in Nix, which breaks architecture-independent library path generation
patches = [ ./fix-install-path.patch ];
2021-01-22 06:22:23 +00:00
buildInputs = lib.optional enableUnicodeHelp [ icu.dev ];
cmakeFlags = [ "-DCXXOPTS_BUILD_EXAMPLES=OFF" ]
2022-01-05 17:44:38 +00:00
++ lib.optional enableUnicodeHelp "-DCXXOPTS_USE_UNICODE_HELP=TRUE";
2021-01-22 06:22:23 +00:00
nativeBuildInputs = [ cmake ] ++ lib.optional enableUnicodeHelp [ pkg-config ];
doCheck = true;
# Conflict on case-insensitive filesystems.
dontUseCmakeBuildDir = true;
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;
};
}