mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
669 B
Nix
23 lines
669 B
Nix
{ stdenv, fetchurl, buildDunePackage, ocaml-migrate-parsetree }:
|
|
|
|
buildDunePackage rec {
|
|
pname = "ppx_gen_rec";
|
|
version = "1.1.0";
|
|
|
|
minimumOCamlVersion = "4.01";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/flowtype/ocaml-${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
|
sha256 = "0fwi4bknq8h9zgpsarjvnzdm9bm8qlyyw0lz30pihg02aiiljqbh";
|
|
};
|
|
|
|
buildInputs = [ ocaml-migrate-parsetree ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/flowtype/ocaml-ppx_gen_rec";
|
|
description = "ocaml preprocessor that generates a recursive module";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.frontsideair ];
|
|
};
|
|
}
|