3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/ocaml-modules/uri/default.nix

40 lines
1,018 B
Nix
Raw Normal View History

2019-04-06 14:49:48 +01:00
{ lib, fetchurl, buildDunePackage, ppx_sexp_conv, ounit
, re, sexplib0, sexplib, stringext
, legacy ? false
}:
2019-04-06 14:49:48 +01:00
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";
2019-04-06 14:49:48 +01:00
inherit (params) version;
2018-01-11 07:57:57 +00:00
src = fetchurl {
2019-04-06 14:49:48 +01:00
url = "https://github.com/mirage/ocaml-${pname}/releases/download/v${version}/${pname}-${params.archive}.tbz";
inherit (params) sha256;
};
buildInputs = [ ounit ];
2019-04-06 14:49:48 +01:00
propagatedBuildInputs = [ ppx_sexp_conv re params.sexplib stringext ];
2015-07-01 19:20:19 +01:00
doCheck = true;
meta = {
2018-01-11 07:57:57 +00:00
homepage = "https://github.com/mirage/ocaml-uri";
description = "RFC3986 URI parsing library for OCaml";
2019-04-06 14:49:48 +01:00
license = lib.licenses.isc;
maintainers = [ lib.maintainers.vbgl ];
};
}