nixpkgs/pkgs/development/tools/misc/cli11/default.nix
2023-01-23 06:12:58 +01:00

37 lines
652 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, boost
, catch2
, cmake
, gtest
, python3
}:
stdenv.mkDerivation rec {
pname = "cli11";
version = "2.3.2";
src = fetchFromGitHub {
owner = "CLIUtils";
repo = "CLI11";
rev = "v${version}";
sha256 = "sha256-x3/kBlf5LdzkTO4NYOKanZBfcU4oK+fJw9L7cf88LsY=";
};
nativeBuildInputs = [ cmake ];
nativeCheckInputs = [ boost python3 catch2 ];
doCheck = true;
meta = with lib; {
description = "Command line parser for C++11";
homepage = "https://github.com/CLIUtils/CLI11";
platforms = platforms.unix;
maintainers = with maintainers; [ ];
license = licenses.bsd3;
};
}