depot/third_party/nixpkgs/pkgs/development/ocaml-modules/functoria/runtime.nix

27 lines
630 B
Nix

{
lib,
buildDunePackage,
fetchurl,
cmdliner,
}:
buildDunePackage rec {
pname = "functoria-runtime";
version = "4.4.2";
src = fetchurl {
url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz";
hash = "sha256-fPJou5EYmIFfa54BMiFvS7BKQq0u1pkA9MVHXt8boPk=";
};
minimalOCamlVersion = "4.08";
propagatedBuildInputs = [ cmdliner ];
meta = with lib; {
homepage = "https://github.com/mirage/functoria";
license = licenses.isc;
description = "Runtime support library for functoria-generated code";
maintainers = [ maintainers.sternenseemann ];
};
}