11b3645446
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.) - found 113.00.00 with grep in /nix/store/kq6az2hq7xjwwsk5zaqvsxk404fkwxib-ocaml-pipebang-113.00.00 - directory tree listing: https://gist.github.com/f574e3b8aec1bc7c22f6688c2a1afed4
21 lines
546 B
Nix
21 lines
546 B
Nix
{stdenv, buildOcaml, fetchurl}:
|
|
|
|
buildOcaml rec {
|
|
name = "pipebang";
|
|
version = "113.00.00";
|
|
|
|
minimumSupportedOcamlVersion = "4.00";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/janestreet/pipebang/archive/${version}.tar.gz";
|
|
sha256 = "0acm2y8wxvnapa248lkgm0vcc44hlwhrjxqkx1awjxzcmarnxhfk";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|