about summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-05-08 08:25:10 +0200
committerVincent Laporte <vbgl@users.noreply.github.com>2020-05-14 21:26:35 +0200
commitd00c84b5bd90d4fe348f836191f7e6228a0e752e (patch)
tree95b0cabfc1b3ea7c641c89f6656b57e927c757ba /pkgs/development/ocaml-modules
parent7625e2771f25ac2e4e3f4b361903ccd10dc98320 (diff)
downloadnixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar.gz
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar.bz2
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar.lz
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar.xz
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.tar.zst
nixlib-d00c84b5bd90d4fe348f836191f7e6228a0e752e.zip
ocamlPackages.lablgtkmathview: remove at 0.7.2
Diffstat (limited to 'pkgs/development/ocaml-modules')
-rw-r--r--pkgs/development/ocaml-modules/lablgtkmathview/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/development/ocaml-modules/lablgtkmathview/default.nix b/pkgs/development/ocaml-modules/lablgtkmathview/default.nix
deleted file mode 100644
index b91e92684755..000000000000
--- a/pkgs/development/ocaml-modules/lablgtkmathview/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{stdenv, fetchurl, pkgconfig, ocaml, findlib, gmetadom, gtkmathview, lablgtk }:
-
-let
-  pname = "lablgtkmathview";
-in
-
-stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-  version = "0.7.2";
-
-  src = fetchurl {
-    url = "http://helm.cs.unibo.it/mml-widget/sources/${pname}-${version}.tar.gz";
-    sha256 = "0rgrpgwrgphw106l1xawxir002b7rmzc23rcxhv8ib6rymp1divx";
-  };
-
-  nativeBuildInputs = [ pkgconfig ];
-  buildInputs = [ ocaml findlib gmetadom gtkmathview lablgtk];
-
-  createFindlibDestdir = true;
-
-  propagatedBuildInputs = [gtkmathview];
-
-  prePatch = ''
-    substituteInPlace Makefile.in --replace "PROPCC = @OCAML_LIB_DIR@" "PROPCC = ${lablgtk}/lib/ocaml/${ocaml.version}/site-lib"
-  '';
-
-  buildPhase = ''
-    mkdir -p .test
-    make
-    make opt
-  '';
-
-  meta = {
-    homepage = "http://helm.cs.unibo.it/mml-widget/";
-    description = "OCaml bindings for gtkmathview";
-    license = stdenv.lib.licenses.lgpl2Plus;
-    maintainers = [ stdenv.lib.maintainers.roconnor ];
-    broken = true;
-  };
-}