mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
935e991b72
js_of_ocaml-camlp4: init at 3.0.0 js_of_ocaml-ppx: init at 3.0.0
64 lines
1.9 KiB
Nix
64 lines
1.9 KiB
Nix
{ stdenv, lib, fetchurl, ocaml, findlib, ocamlbuild, opam, topkg
|
|
, uchar, result, gg, uutf, otfm
|
|
, js_of_ocaml, js_of_ocaml-ocamlbuild, js_of_ocaml-ppx,
|
|
pdfBackend ? true, # depends on uutf and otfm
|
|
htmlcBackend ? true # depends on js_of_ocaml
|
|
}:
|
|
|
|
with lib;
|
|
|
|
let
|
|
inherit (stdenv.lib) optionals versionAtLeast;
|
|
|
|
pname = "vg";
|
|
version = "0.9.0";
|
|
webpage = "http://erratique.ch/software/${pname}";
|
|
in
|
|
|
|
assert versionAtLeast ocaml.version "4.02.0";
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "ocaml${ocaml.version}-${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "${webpage}/releases/${pname}-${version}.tbz";
|
|
sha256 = "1czd2fq85hy24w5pllarsq4pvbx9rda5zdikxfxdng8s9kff2h3f";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild opam topkg ];
|
|
|
|
propagatedBuildInputs = [ uchar result gg ]
|
|
++ optionals pdfBackend [ uutf otfm ]
|
|
++ optionals htmlcBackend [ js_of_ocaml js_of_ocaml-ocamlbuild js_of_ocaml-ppx ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
unpackCmd = "tar xjf $src";
|
|
|
|
buildPhase = topkg.buildPhase
|
|
+ " --with-uutf ${boolToString pdfBackend}"
|
|
+ " --with-otfm ${boolToString pdfBackend}"
|
|
+ " --with-js_of_ocaml ${boolToString htmlcBackend}"
|
|
+ " --with-cairo2 false";
|
|
|
|
inherit (topkg) installPhase;
|
|
|
|
meta = {
|
|
description = "Declarative 2D vector graphics for OCaml";
|
|
longDescription = ''
|
|
Vg is an OCaml module for declarative 2D vector graphics. In Vg, images
|
|
are values that denote functions mapping points of the cartesian plane
|
|
to colors. The module provides combinators to define and compose these
|
|
values.
|
|
|
|
Renderers for PDF, SVG and the HTML canvas are distributed with the
|
|
module. An API allows to implement new renderers.
|
|
'';
|
|
homepage = "${webpage}";
|
|
platforms = ocaml.meta.platforms or [];
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.jirkamarsik ];
|
|
};
|
|
}
|