mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
28 lines
902 B
Nix
28 lines
902 B
Nix
{ stdenv, fetchFromGitHub, ocaml, findlib, camlp4, config-file, lablgtk, xmlm }:
|
|
|
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.02";
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.6";
|
|
name = "ocaml${ocaml.version}-lablgtk-extras-${version}";
|
|
src = fetchFromGitHub {
|
|
owner = "zoggy";
|
|
repo = "lablgtk-extras";
|
|
rev = "release-${version}";
|
|
sha256 = "1bbdp5j18s582mmyd7qiaq1p08g2ag4gl7x65pmzahbhg719hjda";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib camlp4 ];
|
|
propagatedBuildInputs = [ config-file lablgtk xmlm ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
platforms = ocaml.meta.platforms or [];
|
|
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;
|
|
};
|
|
}
|