nixpkgs/pkgs/development/ocaml-modules/functoria/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
719 B
Nix
Raw Normal View History

{ lib, fetchurl, buildDunePackage, cmdliner
, rresult, astring, fmt, logs, bos, fpath, emile, uri
}:
2019-12-23 01:45:12 +00:00
buildDunePackage rec {
pname = "functoria";
version = "4.2.0";
minimalOCamlVersion = "4.08";
2019-12-23 01:45:12 +00:00
src = fetchurl {
url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz";
sha256 = "sha256-rZ9y8+wbDjqjY1sx+TmSoR42hUKRMGpehCCR2cEgbv8=";
2019-12-23 01:45:12 +00:00
};
propagatedBuildInputs = [ cmdliner rresult astring fmt logs bos fpath emile uri ];
doCheck = false;
2019-12-23 01:45:12 +00:00
meta = with lib; {
2019-12-23 01:45:12 +00:00
description = "A DSL to organize functor applications";
homepage = "https://github.com/mirage/functoria";
2019-12-23 01:45:12 +00:00
license = licenses.isc;
maintainers = [ maintainers.vbgl ];
};
}