nixpkgs-suyu/pkgs/development/tools/misc/cli11/default.nix

44 lines
861 B
Nix
Raw Normal View History

2019-12-14 15:57:48 +01:00
{
stdenv,
fetchFromGitHub,
cmake,
gtest,
python,
boost
}:
2019-03-21 22:44:40 +01:00
stdenv.mkDerivation rec {
pname = "cli11";
2020-06-26 07:07:42 +02:00
version = "1.9.1";
2019-03-21 22:44:40 +01:00
src = fetchFromGitHub {
owner = "CLIUtils";
repo = "CLI11";
rev = "v${version}";
2020-06-26 07:07:42 +02:00
sha256 = "0hbch0vk8irgmiaxnfqlqys65v1770rxxdfn3d23m2vqyjh0j9l6";
2019-03-21 22:44:40 +01:00
};
nativeBuildInputs = [ cmake ];
checkInputs = [ boost python ];
doCheck = true;
preConfigure = ''
rm -rfv extern/googletest
ln -sfv ${gtest.src} extern/googletest
2019-12-14 15:57:48 +01:00
sed -i '/TrueFalseTest/d' tests/CMakeLists.txt
2019-03-21 22:44:40 +01:00
'';
enableParallelBuilding = true;
meta = with stdenv.lib; {
description = "CLI11 is a command line parser for C++11";
homepage = "https://github.com/CLIUtils/CLI11";
2019-03-21 22:44:40 +01:00
platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ nand0p ];
license = licenses.unfreeRedistributable;
};
}