forked from mirrors/nixpkgs
Merge pull request #238511 from wegank/camomile-drop-1
ocamlPackages.camomile_0_8_2: drop
This commit is contained in:
commit
9c9b348b75
|
@ -1,32 +0,0 @@
|
|||
{stdenv, lib, fetchurl, ocaml, findlib, camlp4}:
|
||||
|
||||
if lib.versionAtLeast ocaml.version "4.05"
|
||||
then throw "camomile-0.8.2 is not available for OCaml ${ocaml.version}"
|
||||
else
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "camomile";
|
||||
version = "0.8.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/camomile/camomile-${version}.tar.bz2";
|
||||
sha256 = "0x43pjxx70kgip86mmdn08s97k4qzdqc8i79xfyyx28smy1bsa00";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ ocaml findlib camlp4 ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://camomile.sourceforge.net/";
|
||||
description = "A comprehensive Unicode library for OCaml";
|
||||
license = lib.licenses.lgpl21;
|
||||
branch = "0.8.2";
|
||||
inherit (ocaml.meta) platforms;
|
||||
maintainers = [
|
||||
lib.maintainers.maggesi
|
||||
];
|
||||
};
|
||||
}
|
|
@ -156,7 +156,6 @@ let
|
|||
if lib.versionOlder "4.02" ocaml.version
|
||||
then callPackage ../development/ocaml-modules/camomile { }
|
||||
else callPackage ../development/ocaml-modules/camomile/0.8.5.nix { };
|
||||
camomile_0_8_2 = callPackage ../development/ocaml-modules/camomile/0.8.2.nix { };
|
||||
|
||||
caqti = callPackage ../development/ocaml-modules/caqti { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue