summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/pipebang/default.nix
blob: fa9a9f8f86a62a00866d9dbf4cd6c6c6f50a81ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 ];
  };
}