tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
ppx_pipebang: init at 113.33.03
Matthew Maurer
9 years ago
7f3e5783
68aa85cf
+16
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
janestreet
ppx-pipebang.nix
top-level
all-packages.nix
+14
pkgs/development/ocaml-modules/janestreet/ppx-pipebang.nix
···
1
1
+
{stdenv, buildOcamlJane,
2
2
+
ppx_core, ppx_driver, ppx_tools}:
3
3
+
4
4
+
buildOcamlJane rec {
5
5
+
name = "ppx_pipebang";
6
6
+
hash = "0k25bhj9ziiw89xvs4svz7cgazbbmprba9wbic2llffg55fp7acc";
7
7
+
propagatedBuildInputs = [ ppx_core ppx_driver ppx_tools ];
8
8
+
9
9
+
meta = with stdenv.lib; {
10
10
+
description = "A ppx rewriter that inlines reverse application operators |> and |!";
11
11
+
maintainers = [ maintainers.maurer ];
12
12
+
license = licenses.asl20;
13
13
+
};
14
14
+
}
+2
pkgs/top-level/all-packages.nix
···
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 {};
5546
5546
+
5547
5547
+
ppx_pipebang = callPackage ../development/ocaml-modules/janestreet/ppx-pipebang.nix {};
5546
5548
};
5547
5549
5548
5550
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;