python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / unittest-cpp / default.nix
blobd185d32c816fa407bf140e0195415f3f2a29071c
1 {lib, stdenv, fetchFromGitHub, cmake}:
3 with lib;
5 stdenv.mkDerivation rec {
6   pname = "unittest-cpp";
7   version = "2.0.0";
9   src = fetchFromGitHub {
10     owner = "unittest-cpp";
11     repo = "unittest-cpp";
12     rev = "v${version}";
13     sha256 = "0sxb3835nly1jxn071f59fwbdzmqi74j040r81fanxyw3s1azw0i";
14   };
16   nativeBuildInputs = [ cmake ];
18   doCheck = false;
20   meta = {
21     homepage = "https://github.com/unittest-cpp/unittest-cpp";
22     description = "Lightweight unit testing framework for C++";
23     license = licenses.mit;
24     maintainers = [];
25     platforms = lib.platforms.unix;
26   };