biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / ocaml-modules / lablgtk-extras / 1.4.nix
blob3d5135d7439a3093293cafa5f9a332c0249a3c8a
1 { stdenv, lib, fetchurl, ocaml, findlib, camlp4, config-file, lablgtk, xmlm }:
3 stdenv.mkDerivation rec {
4   pname = "ocaml-lablgtk-extras";
5   version = "1.4";
7   src = fetchurl {
8     url = "http://forge.ocamlcore.org/frs/download.php/1282/lablgtkextras-${version}.tar.gz";
9     sha256 = "09fqxwdib7r9yxynknc9gv3jw2hnhj5cak7q5jngk6m8rzvmhfcc";
10   };
12   strictDeps = true;
14   nativeBuildInputs = [ ocaml findlib camlp4 ];
15   propagatedBuildInputs = [ config-file lablgtk xmlm ];
17   createFindlibDestdir = true;
19   meta = {
20     platforms = ocaml.meta.platforms or [ ];
21     maintainers = with lib.maintainers; [ vbgl ];
22     homepage = "http://gtk-extras.forge.ocamlcore.org/";
23     description = "A collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
24     license = lib.licenses.lgpl2Plus;
25     branch = "1.4";
26   };