about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/mlgmp
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/ocaml-modules/mlgmp')
-rw-r--r--nixpkgs/pkgs/development/ocaml-modules/mlgmp/default.nix42
1 files changed, 0 insertions, 42 deletions
diff --git a/nixpkgs/pkgs/development/ocaml-modules/mlgmp/default.nix b/nixpkgs/pkgs/development/ocaml-modules/mlgmp/default.nix
deleted file mode 100644
index a396549d76f4..000000000000
--- a/nixpkgs/pkgs/development/ocaml-modules/mlgmp/default.nix
+++ /dev/null
@@ -1,42 +0,0 @@
-{stdenv, lib, fetchurl, ocaml, findlib, gmp, mpfr, ncurses }:
-
-if lib.versionAtLeast ocaml.version "4.03"
-then throw "mlgmp is not available for OCaml ${ocaml.version}" else
-
-let
-  pname = "mlgmp";
-in
-
-stdenv.mkDerivation rec {
-  name = "${pname}-${version}";
-  version = "20120224";
-
-  src = fetchurl {
-    url = "http://www-verimag.imag.fr/~monniaux/download/${pname}_${version}.tar.gz";
-    sha256 = "3ce1a53fa452ff5a9ba618864d3bc46ef32190b57202d1e996ca7df837ad4f24";
-  };
-
-  makeFlags = [
-    "DESTDIR=$(out)/lib/ocaml/${ocaml.version}/site-lib/gmp"
-  ];
-
-  preConfigure = "make clean";
-  nativeBuildInputs = [ocaml findlib ];
-  buildInputs = [ gmp mpfr ncurses];
-
-  strictDeps = true;
-
-  createFindlibDestdir = true;
-
-  propagatedbuildInputs = [gmp mpfr ncurses];
-
-  postInstall  = ''
-     cp ${./META} $out/lib/ocaml/${ocaml.version}/site-lib/gmp/META
-  '';
-
-  meta = {
-    homepage = "http://opam.ocamlpro.com/pkg/mlgmp.20120224.html";
-    description = "OCaml bindings to GNU MP library";
-    license = "Free software ?";
-  };
-}