python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / ocaml-modules / ppx_gen_rec / default.nix
blobee801f6adfd84603f725a73f151f128fb90eb112
1 { lib, fetchurl, buildDunePackage, ppxlib }:
3 buildDunePackage rec {
4   pname = "ppx_gen_rec";
5   version = "2.0.0";
7   src = fetchurl {
8     url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
9     sha256 = "sha256-/mMj5UT22KQGVy1sjgEoOgPzyCYyeDPtWJYNDvQ9nlk=";
10   };
12   minimumOCamlVersion = "4.07";
13   useDune2 = true;
15   buildInputs = [ ppxlib ];
17   meta = with lib; {
18     homepage = "https://github.com/flowtype/ocaml-ppx_gen_rec";
19     description = "A ppx rewriter that transforms a recursive module expression into a struct.";
20     license = licenses.mit;
21     maintainers = with maintainers; [ frontsideair ];
22   };