tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
ppx_expect: init at 113.33.03
Matthew Maurer
9 years ago
794b4fbf
e485e9b6
+21
2 changed files
expand all
collapse all
unified
split
pkgs
development
ocaml-modules
janestreet
ppx-expect.nix
top-level
all-packages.nix
+19
pkgs/development/ocaml-modules/janestreet/ppx-expect.nix
···
1
1
+
{stdenv, buildOcamlJane,
2
2
+
ppx_assert, ppx_compare, ppx_core, ppx_custom_printf, ppx_driver,
3
3
+
ppx_fields_conv, ppx_here, ppx_inline_test, ppx_sexp_conv, ppx_tools,
4
4
+
ppx_variants_conv, re, sexplib, variantslib, fieldslib}:
5
5
+
6
6
+
buildOcamlJane rec {
7
7
+
name = "ppx_expect";
8
8
+
hash = "0cwagb4cj3x1vsr19kyfa9pxlvaz9a5v863cahi5glinsh4mzgdx";
9
9
+
propagatedBuildInputs =
10
10
+
[ ppx_assert ppx_compare ppx_core ppx_custom_printf ppx_driver
11
11
+
ppx_fields_conv ppx_here ppx_inline_test ppx_sexp_conv ppx_tools
12
12
+
ppx_variants_conv re sexplib variantslib fieldslib ];
13
13
+
14
14
+
meta = with stdenv.lib; {
15
15
+
description = "Cram-like framework for OCaml";
16
16
+
maintainers = [ maintainers.maurer ];
17
17
+
license = licenses.asl20;
18
18
+
};
19
19
+
}
+2
pkgs/top-level/all-packages.nix
···
5553
5553
ppx_typerep_conv = callPackage ../development/ocaml-modules/janestreet/ppx-typerep-conv.nix {};
5554
5554
5555
5555
ppx_variants_conv = callPackage ../development/ocaml-modules/janestreet/ppx-variants-conv.nix {};
5556
5556
+
5557
5557
+
ppx_expect = callPackage ../development/ocaml-modules/janestreet/ppx-expect.nix {};
5556
5558
};
5557
5559
5558
5560
ocamlPackages = recurseIntoAttrs ocamlPackages_4_01_0;