mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-31 09:14:28 +00:00
ocamlPackages.lablgtk_2_14: remove at 2.14.0 (broken)
This commit is contained in:
parent
0671df7f02
commit
ed50e17618
@ -1,41 +0,0 @@
|
||||
{ stdenv, lib, fetchurl, ocaml, findlib, pkg-config, gtk2, libgnomecanvas, gtksourceview, camlp4 }:
|
||||
|
||||
if lib.versionAtLeast ocaml.version "4.04"
|
||||
then throw "lablgtk-2.14 is not available for OCaml ${ocaml.version}" else
|
||||
|
||||
let
|
||||
pname = "lablgtk";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "${pname}-${version}";
|
||||
version = "2.14.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://forge.ocamlcore.org/frs/download.php/561/${name}.tar.gz";
|
||||
sha256 = "1fnh0amm7lwgyjdhmlqgsp62gwlar1140425yc1j6inwmgnsp0a9";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ocaml findlib camlp4 ];
|
||||
buildInputs = [ gtk2 libgnomecanvas gtksourceview ];
|
||||
|
||||
configureFlags = [ "--with-libdir=$(out)/lib/ocaml/${ocaml.version}/site-lib" ];
|
||||
buildFlags = [ "world" ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib
|
||||
export OCAMLPATH=$out/lib/ocaml/${ocaml.version}/site-lib/:$OCAMLPATH
|
||||
'';
|
||||
|
||||
meta = {
|
||||
branch = "2.14";
|
||||
inherit (ocaml.meta) platforms;
|
||||
maintainers = [
|
||||
lib.maintainers.maggesi
|
||||
lib.maintainers.roconnor
|
||||
];
|
||||
homepage = "http://wwwfun.kurims.kyoto-u.ac.jp/soft/lsl/lablgtk.html";
|
||||
description = "LablGTK is is an Objective Caml interface to GTK";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
};
|
||||
})
|
@ -686,9 +686,6 @@ let
|
||||
|
||||
lablgtk3-sourceview3 = callPackage ../development/ocaml-modules/lablgtk3/sourceview3.nix { };
|
||||
|
||||
lablgtk_2_14 = callPackage ../development/ocaml-modules/lablgtk/2.14.0.nix {
|
||||
inherit (pkgs.gnome2) libgnomecanvas gtksourceview;
|
||||
};
|
||||
lablgtk = callPackage ../development/ocaml-modules/lablgtk {
|
||||
inherit (pkgs.gnome2) libgnomecanvas gtksourceview;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user