mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 23:23:07 +00:00
28 lines
593 B
Nix
28 lines
593 B
Nix
{ lib, buildDunePackage, fetchFromGitLab
|
|
, sedlex, uunf, uutf
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "iri";
|
|
version = "0.7.0";
|
|
|
|
minimalOCamlVersion = "4.12";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "framagit.org";
|
|
owner = "zoggy";
|
|
repo = "ocaml-iri";
|
|
rev = version;
|
|
hash = "sha256-Mkg7kIIVpKbeWUras1RqtJsRx2Q3dBnm4QqSMJFweF8=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ sedlex uunf uutf ];
|
|
|
|
meta = {
|
|
description = "IRI (RFC3987) native OCaml implementation";
|
|
license = lib.licenses.lgpl3;
|
|
maintainers = [ lib.maintainers.vbgl ];
|
|
inherit (src.meta) homepage;
|
|
};
|
|
}
|