about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/gtktop/default.nix
blob: b0e17a28e51e2ac0b033cd0b2b427972bab92d7d (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
24
25
26
27
28
29
{ stdenv, fetchurl, ocaml, camlp4, findlib, lablgtk-extras }:

let pname = "gtktop-2.0"; in

if stdenv.lib.versionAtLeast ocaml.version "4.06"
then throw "${pname} is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation {
  name = "ocaml-${pname}";

  src = fetchurl {
    url = "http://zoggy.github.io/gtktop/${pname}.tar.gz";
    sha256 = "0cpmnavvham9mwxknm6df90g9qxabcvn2kfwlf9mncqa0z3rknz6";
  };

  buildInputs = [ ocaml camlp4 findlib ];
  propagatedBuildInputs = [ lablgtk-extras ];

  createFindlibDestdir = true;

  meta = {
    homepage = "http://zoggy.github.io/gtktop/";
    description = "A small OCaml library to ease the creation of graphical toplevels";
    license = stdenv.lib.licenses.lgpl3;
    maintainers = with stdenv.lib.maintainers; [ vbgl ];
    platforms = ocaml.meta.platforms or [];
  };
}