9 stdenv.mkDerivation (finalAttrs: {
11 version = "0-unstable-2023-12-14";
13 src = fetchFromGitHub {
16 rev = "ff6af6fc683159deb51c543b065eba14dfcf329b";
17 hash = "sha256-Ixz5RpY0n8Un/Pv4XoTfbs40+70iyMbkQUjDqoLaWOg=";
20 outputs = [ "out" "dev" ];
22 nativeBuildInputs = [ cmake ];
25 (lib.cmakeBool "BUILD_SHARED_LIBS" (!stdenv.hostPlatform.isStatic))
26 (lib.cmakeBool "RC_INSTALL_ALL_EXTRAS" true)
30 updateScript = unstableGitUpdater { };
31 tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
35 description = "C++ framework for property based testing inspired by QuickCheck";
36 inherit (finalAttrs.src.meta) homepage;
38 license = licenses.bsd2;
43 "rapidcheck_boost_test"
48 platforms = platforms.all;