summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uri/default.nix
blob: 0f3578806d833a5e447b9fac5c9c016a824229a4 (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
31
32
33
34
35
36
37
38
39
{ lib, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
, re, sexplib0, sexplib, stringext
, legacy ? false
}:

let params =
  if legacy then rec {
    version = "1.9.6";
    archive = version;
    sha256 = "1m845rwd70wi4iijkrigyz939m1x84ba70hvv0d9sgk6971w4kz0";
    inherit sexplib;
  } else rec {
    version = "2.2.0";
    archive = "v${version}";
    sha256 = "1q0xmc93l46dilxclkmai7w952bdi745rhvsx5vissaigcj9wbwi";
    sexplib = sexplib0;
  }
; in

buildDunePackage rec {
  pname = "uri";
  inherit (params) version;

  src = fetchurl {
    url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-${params.archive}.tbz";
    inherit (params) sha256;
  };

  buildInputs = [ ounit ];
  propagatedBuildInputs = [ ppx_sexp_conv re params.sexplib stringext ];
  doCheck = true;

  meta = {
    homepage = "https://github.com/mirage/ocaml-uri";
    description = "RFC3986 URI parsing library for OCaml";
    license = lib.licenses.isc;
    maintainers = [ lib.maintainers.vbgl ];
  };
}