lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ocamlPackages.ppx_gen_rec: 1.1.0 -> 2.0.0

authored by

superherointj and committed by
Vincent Laporte
690496c4 235f98a3

+9 -8
+9 -8
pkgs/development/ocaml-modules/ppx_gen_rec/default.nix
··· 1 - { lib, fetchurl, buildDunePackage, ocaml-migrate-parsetree }: 1 + { lib, fetchurl, buildDunePackage, ppxlib }: 2 2 3 3 buildDunePackage rec { 4 4 pname = "ppx_gen_rec"; 5 - version = "1.1.0"; 6 - 7 - useDune2 = true; 5 + version = "2.0.0"; 8 6 9 7 src = fetchurl { 10 8 url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz"; 11 - sha256 = "0fwi4bknq8h9zgpsarjvnzdm9bm8qlyyw0lz30pihg02aiiljqbh"; 9 + sha256 = "sha256-/mMj5UT22KQGVy1sjgEoOgPzyCYyeDPtWJYNDvQ9nlk="; 12 10 }; 13 11 14 - buildInputs = [ ocaml-migrate-parsetree ]; 12 + minimumOCamlVersion = "4.07"; 13 + useDune2 = true; 14 + 15 + buildInputs = [ ppxlib ]; 15 16 16 17 meta = with lib; { 17 18 homepage = "https://github.com/flowtype/ocaml-ppx_gen_rec"; 18 - description = "ocaml preprocessor that generates a recursive module"; 19 + description = "A ppx rewriter that transforms a recursive module expression into a struct."; 19 20 license = licenses.mit; 20 - maintainers = [ maintainers.frontsideair ]; 21 + maintainers = with maintainers; [ frontsideair ]; 21 22 }; 22 23 }