2015-05-15 15:29:22 +01:00
|
|
|
{stdenv, buildOcaml, fetchurl}:
|
|
|
|
|
|
|
|
buildOcaml rec {
|
|
|
|
name = "pipebang";
|
2018-03-21 04:30:28 +00:00
|
|
|
version = "113.00.00";
|
2015-05-15 15:29:22 +01:00
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/janestreet/pipebang/archive/${version}.tar.gz";
|
2018-03-21 04:30:28 +00:00
|
|
|
sha256 = "0acm2y8wxvnapa248lkgm0vcc44hlwhrjxqkx1awjxzcmarnxhfk";
|
2015-05-15 15:29:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|