python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / cpptest / default.nix
bloba3558e0ef493763104584f48d32760c8a67c86a5
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "cpptest";
5   version = "2.0.0";
7   src = fetchurl {
8     url = "mirror://sourceforge/project/cpptest/cpptest/cpptest-${version}/cpptest-${version}.tar.gz";
9     sha256 = "0lpy3f2fjx1srh02myanlp6zfi497whlldcrnij39ghfhm0arcnm";
10   };
12   meta = with lib; {
13     homepage = "http://cpptest.sourceforge.net/";
14     description = "Simple C++ unit testing framework";
15     maintainers = with maintainers; [ bosu ];
16     license = lib.licenses.lgpl3;
17     platforms = platforms.all;
18   };