ocamlPackages.ocaml_text: remove at 0.8

Package is currently broken and no other package depend on it

authored by Vincent Laporte and committed by Vincent Laporte 38d21595 ccb59f86

-27
-25
pkgs/development/ocaml-modules/ocaml-text/default.nix
··· 1 - { stdenv, lib, fetchzip, libiconv, ocaml, findlib, ocamlbuild, ncurses }: 2 - 3 - stdenv.mkDerivation rec { 4 - pname = "ocaml-text"; 5 - version = "0.8"; 6 - 7 - src = fetchzip { 8 - url = "https://github.com/vbmithr/ocaml-text/archive/${version}.tar.gz"; 9 - sha256 = "11jamdfn5s19a0yvl012q1xvdk1grkp4rkrn819imqrvdplqkn1y"; 10 - }; 11 - 12 - buildInputs = [ ocaml findlib ocamlbuild ncurses libiconv ]; 13 - 14 - configurePhase = "iconv_prefix=${libiconv} ocaml setup.ml -configure"; 15 - 16 - createFindlibDestdir = true; 17 - 18 - 19 - meta = { 20 - homepage = "http://ocaml-text.forge.ocamlcore.org/"; 21 - description = "A library for convenient text manipulation"; 22 - license = lib.licenses.bsd3; 23 - platforms = ocaml.meta.platforms or []; 24 - }; 25 - }
···
-2
pkgs/top-level/ocaml-packages.nix
··· 928 929 syslog-message = callPackage ../development/ocaml-modules/syslog-message { }; 930 931 - ocaml_text = callPackage ../development/ocaml-modules/ocaml-text { }; 932 - 933 ocaml-version = callPackage ../development/ocaml-modules/ocaml-version { }; 934 935 ocf = callPackage ../development/ocaml-modules/ocf { };
··· 928 929 syslog-message = callPackage ../development/ocaml-modules/syslog-message { }; 930 931 ocaml-version = callPackage ../development/ocaml-modules/ocaml-version { }; 932 933 ocf = callPackage ../development/ocaml-modules/ocf { };