1 { lib, stdenv, cmake, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
5 version = "unstable-2020-12-19";
7 src = fetchFromGitHub {
10 rev = "b78f89288c7e086d06e2a1e10b605d8375517a8a";
11 sha256 = "0fj11gbhkaxbsgix2im7vdfvr26l75b8djk462sfw8xrwrfkjbdz";
14 nativeBuildInputs = [ cmake ];
16 # Install the extras headers
18 cp -r $src/extras $out
19 chmod -R +w $out/extras
20 rm $out/extras/CMakeLists.txt
21 rm $out/extras/**/CMakeLists.txt
25 description = "A C++ framework for property based testing inspired by QuickCheck";
26 inherit (src.meta) homepage;
27 maintainers = with maintainers; [ ];
28 license = licenses.bsd2;
29 platforms = platforms.all;