1 {lib, stdenv, fetchFromGitHub, cmake}:
5 stdenv.mkDerivation rec {
6 pname = "unittest-cpp";
9 src = fetchFromGitHub {
10 owner = "unittest-cpp";
11 repo = "unittest-cpp";
13 sha256 = "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i";
16 nativeBuildInputs = [ cmake ];
21 homepage = "https://github.com/unittest-cpp/unittest-cpp";
22 description = "Lightweight unit testing framework for C++";
23 license = licenses.mit;
25 platforms = lib.platforms.unix;