summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/lablgtk-extras/1.4.nix
blob: fbe9898fd81e948aaa1c79ad0e425d367577ef10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchurl, ocaml, findlib, camlp4, config-file, lablgtk, xmlm }:

stdenv.mkDerivation {
  name = "ocaml-lablgtk-extras-1.4";
  src = fetchurl {
    url = http://forge.ocamlcore.org/frs/download.php/1282/lablgtkextras-1.4.tar.gz;
    sha256 = "09fqxwdib7r9yxynknc9gv3jw2hnhj5cak7q5jngk6m8rzvmhfcc";
  };

  buildInputs = [ ocaml findlib camlp4 ];
  propagatedBuildInputs = [ config-file lablgtk xmlm ];

  createFindlibDestdir = true;

  meta = {
    platforms = ocaml.meta.platforms;
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
    homepage = http://gtk-extras.forge.ocamlcore.org/;
    description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
    license = stdenv.lib.licenses.lgpl2Plus;
    branch = "1.4";
  };
}