about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2024-01-04 21:33:14 +0100
committerVincent Laporte <Vincent.Laporte@gmail.com>2024-01-04 21:33:14 +0100
commitda12d8043de14400f50c2ac0b278387044744227 (patch)
tree6f34495de4084540842c3126bf1e4be8d127cff5 /pkgs/development/ocaml-modules
parente663e9c1b046b3c18745b8ebe1fb2c2e23607bd2 (diff)
downloadnixlib-da12d8043de14400f50c2ac0b278387044744227.tar
nixlib-da12d8043de14400f50c2ac0b278387044744227.tar.gz
nixlib-da12d8043de14400f50c2ac0b278387044744227.tar.bz2
nixlib-da12d8043de14400f50c2ac0b278387044744227.tar.lz
nixlib-da12d8043de14400f50c2ac0b278387044744227.tar.xz
nixlib-da12d8043de14400f50c2ac0b278387044744227.tar.zst
nixlib-da12d8043de14400f50c2ac0b278387044744227.zip
ocamlPackages.macaque: remove at 0.7.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/macaque/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgs/development/ocaml-modules/macaque/default.nix b/pkgs/development/ocaml-modules/macaque/default.nix
deleted file mode 100644
index d47c0c4f11c5..000000000000
--- a/pkgs/development/ocaml-modules/macaque/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, ocaml, findlib, ocamlbuild, pgocaml, camlp4 }:
-
-stdenv.mkDerivation rec {
-  pname = "ocaml-macaque";
-  version = "0.7.2";
-
-  src = fetchFromGitHub {
-    owner = "ocsigen";
-    repo = "macaque";
-    rev = version;
-    sha256 = "sha256-W9ZFaINYYtIikKy/ZqdlKeFQSA7DQT9plc3+ZhlSIJI=";
-  };
-
-  nativeBuildInputs = [ ocaml findlib ocamlbuild camlp4 ];
-  propagatedBuildInputs = [ pgocaml camlp4 ];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  meta = with lib; {
-    description = "Macros for Caml Queries";
-    homepage = "https://github.com/ocsigen/macaque";
-    license = licenses.lgpl2;
-    platforms = ocaml.meta.platforms or [ ];
-    maintainers = with maintainers; [ vbgl ];
-  };
-}