mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
15 lines
413 B
Nix
15 lines
413 B
Nix
{stdenv, buildOcamlJane,
|
|
ppx_core, ppx_driver}:
|
|
|
|
buildOcamlJane rec {
|
|
name = "ppx_let";
|
|
hash = "0whnfq4rgkq4apfqnvc100wlk25pmqdyvy6s21dsn3fcm9hff467";
|
|
propagatedBuildInputs = [ ppx_core ppx_driver ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A ppx rewriter for monadic and applicative let bindings and match statements";
|
|
maintainers = [ maintainers.maurer ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|