nixpkgs/pkgs/development/ocaml-modules/lablgtk/2.14.0.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, lib, fetchurl, ocaml, findlib, pkg-config, gtk2, libgnomecanvas, gtksourceview, camlp4 }:
2014-09-18 00:44:02 +02:00
if lib.versionAtLeast ocaml.version "4.04"
then throw "lablgtk-2.14 is not available for OCaml ${ocaml.version}" else
2014-09-18 00:44:02 +02:00
let
pname = "lablgtk";
in
stdenv.mkDerivation (rec {
name = "${pname}-${version}";
2016-10-05 09:32:30 +02:00
version = "2.14.0";
2014-09-18 00:44:02 +02:00
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 ];
2014-09-18 00:44:02 +02:00
2018-07-25 23:44:21 +02:00
configureFlags = [ "--with-libdir=$(out)/lib/ocaml/${ocaml.version}/site-lib" ];
buildFlags = [ "world" ];
2014-09-18 00:44:02 +02:00
preInstall = ''
2016-10-05 09:32:30 +02:00
mkdir -p $out/lib/ocaml/${ocaml.version}/site-lib
export OCAMLPATH=$out/lib/ocaml/${ocaml.version}/site-lib/:$OCAMLPATH
2014-09-18 00:44:02 +02:00
'';
meta = {
2014-11-06 20:40:20 +01:00
branch = "2.14";
inherit (ocaml.meta) platforms;
2014-09-18 00:44:02 +02:00
maintainers = [
lib.maintainers.maggesi
lib.maintainers.roconnor
2014-09-18 00:44:02 +02:00
];
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;
2014-09-18 00:44:02 +02:00
};
})