3
0
Fork 0
forked from mirrors/nixpkgs

ocaml-pipebang: add initial version (110.01.00) to the system

This commit is contained in:
Eric Merritt 2015-05-15 09:29:22 -05:00
parent 74b9ccfe3f
commit 48c98e12d2
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{stdenv, buildOcaml, fetchurl}:
buildOcaml rec {
name = "pipebang";
version = "110.01.00";
minimumSupportedOcamlVersion = "4.00";
src = fetchurl {
url = "https://github.com/janestreet/pipebang/archive/${version}.tar.gz";
sha256 = "a8858d9607c15cdf0a775196be060c8d91de724fc80a347d7a76ef1d38329096";
};
meta = with stdenv.lib; {
homepage = https://github.com/janestreet/pipebang;
description = "Syntax extension to transform x |! f into f x";
license = licenses.asl20;
maintainers = [ maintainers.ericbmerritt ];
};
}

View file

@ -4335,6 +4335,8 @@ let
pa_test = callPackage ../development/ocaml-modules/pa_test { };
pipebang = callPackage ../development/ocaml-modules/pipebang { };
pprint = callPackage ../development/ocaml-modules/pprint { };
pycaml = callPackage ../development/ocaml-modules/pycaml { };