python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / cutee / default.nix
blob748d495063dec6b5b55cd0cb215421bdd318f3ec
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "cutee";
5   version = "0.4.2";
7   src = fetchurl {
8     url    = "http://www.codesink.org/download/${pname}-${version}.tar.gz";
9     sha256 = "18bzvhzx8k24mpcim5669n3wg9hd0sfsxj8zjpbr24hywrlppgc2";
10   };
12   buildFlags = [ "cutee" ];
14   installPhase = ''
15     mkdir -p $out/bin
16     cp cutee $out/bin
17   '';
19   meta = with lib; {
20     description = "C++ Unit Testing Easy Environment";
21     homepage    = "http://www.codesink.org/cutee_unit_testing.html";
22     license     = licenses.gpl2Plus;
23     maintainers = with maintainers; [ leenaars];
24     platforms = platforms.linux;
25   };