mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
28 lines
591 B
Nix
28 lines
591 B
Nix
{lib, stdenv, fetchFromGitHub, cmake}:
|
|
|
|
with lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "unittest-cpp";
|
|
version = "2.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "unittest-cpp";
|
|
repo = "unittest-cpp";
|
|
rev = "v${version}";
|
|
sha256 = "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/unittest-cpp/unittest-cpp";
|
|
description = "Lightweight unit testing framework for C++";
|
|
license = licenses.mit;
|
|
maintainers = [];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|