summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2021-12-07 09:49:58 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2022-10-25 09:40:57 +0200
commitb42a0ec29ad2bf5aff18d9d4cdd2c6ba12711734 (patch)
tree6113db4f27d1fae78691683a59a332170991edce /pkgs/development/ocaml-modules
parent8e224632689fbce6e6572ed9ea8ea4584b803fe0 (diff)
ocamlPackages.pipebang: remove at 113.00.00
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/pipebang/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/development/ocaml-modules/pipebang/default.nix b/pkgs/development/ocaml-modules/pipebang/default.nix
deleted file mode 100644
index e2bd4d3ec5c8f..0000000000000
--- a/pkgs/development/ocaml-modules/pipebang/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, buildOcaml, fetchFromGitHub, camlp4 }:
-
-buildOcaml rec {
-  pname = "pipebang";
-  version = "113.00.00";
-
-  minimumSupportedOcamlVersion = "4.00";
-
-  src = fetchFromGitHub {
-    owner = "janestreet";
-    repo = "pipebang";
-    rev = version;
-    sha256 = "sha256-9A3X/ciL5HtuKQ5awS+hDDBLL5ytOr12wHsmJLNRn+Q=";
-  };
-
-  strictDeps = true;
-
-  propagatedBuildInputs = [ camlp4 ];
-
-  meta = with lib; {
-    homepage = "https://github.com/janestreet/pipebang";
-    description = "Syntax extension to transform x |! f into f x";
-    license = licenses.asl20;
-    maintainers = [ maintainers.ericbmerritt ];
-  };
-}