about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/ocaml-modules/cow/default.nix
blob: 4832f5c39af3bb93021dc48f24ddd11a6903a980 (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
30
{ stdenv, fetchFromGitHub, ocaml, findlib
, ocamlbuild, topkg
, uri, xmlm, omd, ezjsonm }:

stdenv.mkDerivation rec {
  version = "2.2.0";
  name = "ocaml-cow-${version}";

  src = fetchFromGitHub {
    owner  = "mirage";
    repo   = "ocaml-cow";
    rev    = "v${version}";
    sha256 = "0snhabg7rfrrcq2ksr3qghiawd61cw3y4kp6rl7vs87j4cnk3kr2";
  };

  buildInputs = [ ocaml ocamlbuild findlib topkg ];
  propagatedBuildInputs = [ xmlm uri ezjsonm omd ];

  inherit (topkg) buildPhase installPhase;

  meta = with stdenv.lib; {
    description = "Caml on the Web";
    longDescription = ''
      Caml on the Web (COW) is a set of parsers and syntax extensions to let you manipulate HTML, CSS, XML, JSON and Markdown directly from OCaml code.
    '';
    license = licenses.isc;
    maintainers = [ maintainers.sternenseemann ];
    inherit (ocaml.meta) platforms;
  };
}