2017-10-18 06:50:06 +01:00
|
|
|
{ stdenv, fetchurl, ocaml, findlib, pkgconfig, gtk2, libgnomecanvas, libglade, gtksourceview }:
|
2010-12-31 17:48:55 +00:00
|
|
|
|
2017-10-31 00:18:41 +00:00
|
|
|
let param =
|
|
|
|
let check = stdenv.lib.versionAtLeast ocaml.version; in
|
|
|
|
if check "4.06" then {
|
|
|
|
version = "2.18.6";
|
|
|
|
url = https://forge.ocamlcore.org/frs/download.php/1726/lablgtk-2.18.6.tar.gz;
|
|
|
|
sha256 = "1y38fdvswy6hmppm65qvgdk4pb3ghhnvz7n4ialf46340r1s5p2d";
|
|
|
|
} else if check "3.12" then {
|
|
|
|
version = "2.18.5";
|
|
|
|
url = https://forge.ocamlcore.org/frs/download.php/1627/lablgtk-2.18.5.tar.gz;
|
|
|
|
sha256 = "0cyj6sfdvzx8hw7553lhgwc0krlgvlza0ph3dk9gsxy047dm3wib";
|
|
|
|
} else throw "lablgtk is not available for OCaml ${ocaml.version}";
|
2010-12-31 17:48:55 +00:00
|
|
|
in
|
|
|
|
|
2016-10-05 08:32:30 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-10-31 00:18:41 +00:00
|
|
|
name = "lablgtk-${version}";
|
|
|
|
inherit (param) version;
|
2016-10-05 08:32:30 +01:00
|
|
|
|
2010-12-31 17:48:55 +00:00
|
|
|
src = fetchurl {
|
2017-10-31 00:18:41 +00:00
|
|
|
inherit (param) url sha256;
|
2010-12-31 17:48:55 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2017-10-18 06:50:06 +01:00
|
|
|
buildInputs = [ ocaml findlib gtk2 libgnomecanvas libglade gtksourceview ];
|
2010-12-31 17:48:55 +00:00
|
|
|
|
2018-07-25 22:44:21 +01:00
|
|
|
configureFlags = [ "--with-libdir=$(out)/lib/ocaml/${ocaml.version}/site-lib" ];
|
2010-12-31 17:48:55 +00:00
|
|
|
buildFlags = "world";
|
|
|
|
|
2013-06-04 19:30:50 +01:00
|
|
|
preInstall = ''
|
2016-10-05 08:32:30 +01:00
|
|
|
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib
|
|
|
|
export OCAMLPATH=$out/lib/ocaml/${ocaml.version}/site-lib/:$OCAMLPATH
|
2010-12-31 17:48:55 +00:00
|
|
|
'';
|
|
|
|
|
2017-06-26 07:27:03 +01:00
|
|
|
dontStrip = true;
|
|
|
|
|
2014-10-04 00:49:05 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-12-24 17:49:07 +00:00
|
|
|
platforms = ocaml.meta.platforms or [];
|
2014-10-04 00:49:05 +01:00
|
|
|
maintainers = with maintainers; [
|
|
|
|
z77z roconnor vbgl
|
2010-12-31 17:48:55 +00:00
|
|
|
];
|
2014-10-04 00:49:05 +01:00
|
|
|
homepage = http://lablgtk.forge.ocamlcore.org/;
|
|
|
|
description = "An OCaml interface to gtk+";
|
|
|
|
license = licenses.lgpl21Plus;
|
2010-12-31 17:48:55 +00:00
|
|
|
};
|
2014-10-04 00:49:05 +01:00
|
|
|
}
|