mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 20:33:21 +00:00
28 lines
738 B
Nix
28 lines
738 B
Nix
{ lib, fetchurl, buildDunePackage, cmdliner
|
|
, rresult, astring, fmt, logs, bos, fpath, emile, uri
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "functoria";
|
|
version = "4.3.4";
|
|
|
|
duneVersion = "3";
|
|
minimalOCamlVersion = "4.08";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/mirage/mirage/releases/download/v${version}/mirage-${version}.tbz";
|
|
hash = "sha256-ZN8La2+N19wVo/vBUfIj17JU6FSp0jX7h2nDoIpR1XY=";
|
|
};
|
|
|
|
propagatedBuildInputs = [ cmdliner rresult astring fmt logs bos fpath emile uri ];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "A DSL to organize functor applications";
|
|
homepage = "https://github.com/mirage/functoria";
|
|
license = licenses.isc;
|
|
maintainers = [ maintainers.vbgl ];
|
|
};
|
|
}
|