depot/third_party/nixpkgs/pkgs/development/libraries/unittest-cpp/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

27 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;
};
}