nixos/manual: Must disable secure boot on UEFI installs (#364406)
[NixPkgs.git] / pkgs / development / ocaml-modules / lablgtk-extras / 1.4.nix
blob9fa04045bbcd1171bab043b36f6ee5fefdc9b8a6
2   stdenv,
3   lib,
4   fetchurl,
5   ocaml,
6   findlib,
7   camlp4,
8   config-file,
9   lablgtk,
10   xmlm,
13 stdenv.mkDerivation rec {
14   pname = "ocaml-lablgtk-extras";
15   version = "1.4";
17   src = fetchurl {
18     url = "http://forge.ocamlcore.org/frs/download.php/1282/lablgtkextras-${version}.tar.gz";
19     sha256 = "09fqxwdib7r9yxynknc9gv3jw2hnhj5cak7q5jngk6m8rzvmhfcc";
20   };
22   strictDeps = true;
24   nativeBuildInputs = [
25     ocaml
26     findlib
27     camlp4
28   ];
29   propagatedBuildInputs = [
30     config-file
31     lablgtk
32     xmlm
33   ];
35   createFindlibDestdir = true;
37   meta = {
38     platforms = ocaml.meta.platforms or [ ];
39     maintainers = with lib.maintainers; [ vbgl ];
40     homepage = "http://gtk-extras.forge.ocamlcore.org/";
41     description = "Collection of libraries and modules useful when developing OCaml/LablGtk2 applications";
42     license = lib.licenses.lgpl2Plus;
43     branch = "1.4";
44   };