summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/uri/default.nix
blob: cfbcc27ba9cce738078c6f703546bead93daba4d (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
{ lib, fetchurl, buildDunePackage, ounit
, re, stringext
}:

buildDunePackage rec {
  pname = "uri";
  version = "3.1.0";

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

  buildInputs = [ ounit ];
  propagatedBuildInputs = [ re 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 ];
  };
}