summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/cow/default.nix
blob: 787854f8e41659a78f5dc62a51514b5d18ece783 (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
{ lib, fetchurl, buildDunePackage, alcotest
, uri, xmlm, omd, ezjsonm }:

buildDunePackage rec {
  minimumOCamlVersion = "4.02.3";

  version = "2.4.0";
  pname = "cow";

  src = fetchurl {
    url = "https://github.com/mirage/ocaml-cow/releases/download/v${version}/cow-v${version}.tbz";
    sha256 = "1x77lwpskda4zyikwxh500xjn90pgdwz6jm7ca7f36pyav4vl6zx";
  };

  propagatedBuildInputs = [ xmlm uri ezjsonm omd ];
  checkInputs = [ alcotest ];
  doCheck = true;

  meta = with lib; {
    description = "Caml on the Web";
    longDescription = ''
      Writing web-applications requires a lot of skills: HTML, XML, JSON and
      Markdown, to name but a few! This library provides OCaml combinators
      for these web formats.
    '';
    license = licenses.isc;
    maintainers = [ maintainers.sternenseemann ];
  };
}