tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ppx_let: init at 113.33.03
Matthew Maurer
9 years ago
68aa85cf
f8241a28
+16
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
janestreet
ppx-let.nix
top-level
all-packages.nix
+14
pkgs/development/ocaml-modules/janestreet/ppx-let.nix
···
1
1
+
{stdenv, buildOcamlJane,
2
2
+
ppx_core, ppx_driver}:
3
3
+
4
4
+
buildOcamlJane rec {
5
5
+
name = "ppx_let";
6
6
+
hash = "0whnfq4rgkq4apfqnvc100wlk25pmqdyvy6s21dsn3fcm9hff467";
7
7
+
propagatedBuildInputs = [ ppx_core ppx_driver ];
8
8
+
9
9
+
meta = with stdenv.lib; {
10
10
+
description = "A ppx rewriter for monadic and applicative let bindings and match statements";
11
11
+
maintainers = [ maintainers.maurer ];
12
12
+
license = licenses.asl20;
13
13
+
};
14
14
+
}
+2
pkgs/top-level/all-packages.nix
···
5541
5541
ppx_fail = callPackage ../development/ocaml-modules/janestreet/ppx-fail.nix {};
5542
5542
5543
5543
ppx_fields_conv = callPackage ../development/ocaml-modules/janestreet/ppx-fields-conv.nix {};
5544
5544
+
5545
5545
+
ppx_let = callPackage ../development/ocaml-modules/janestreet/ppx-let.nix {};
5544
5546
};
5545
5547
5546
5548
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;