mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
36 lines
651 B
Nix
36 lines
651 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
fetchFromGitLab,
|
|
sedlex,
|
|
uunf,
|
|
uutf,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "iri";
|
|
version = "1.1.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "zoggy";
|
|
repo = "ocaml-iri";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-fh5+0CWplDdGXCotZL2UzjOGil2LR4NppttaquO/ndE=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
sedlex
|
|
uunf
|
|
uutf
|
|
];
|
|
|
|
meta = {
|
|
description = "IRI (RFC3987) native OCaml implementation";
|
|
license = lib.licenses.lgpl3;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
inherit (finalAttrs.src.meta) homepage;
|
|
};
|
|
})
|