2021-10-30 18:12:40 +01:00
|
|
|
{ lib, buildOcaml, fetchFromGitHub }:
|
2015-05-15 15:29:22 +01:00
|
|
|
|
|
|
|
buildOcaml rec {
|
2021-10-31 12:35:20 +00:00
|
|
|
pname = "pipebang";
|
2018-03-21 04:30:28 +00:00
|
|
|
version = "113.00.00";
|
2015-05-15 15:29:22 +01:00
|
|
|
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
|
2021-10-30 18:12:40 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "janestreet";
|
|
|
|
repo = "pipebang";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "sha256-9A3X/ciL5HtuKQ5awS+hDDBLL5ytOr12wHsmJLNRn+Q=";
|
2015-05-15 15:29:22 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/janestreet/pipebang";
|
2015-05-15 15:29:22 +01:00
|
|
|
description = "Syntax extension to transform x |! f into f x";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = [ maintainers.ericbmerritt ];
|
|
|
|
};
|
|
|
|
}
|