ocamlPackages.functoria: 3.1.0 → 3.1.1
This commit is contained in:
parent
8c9c0eb38b
commit
d972bd23e0
@ -1,16 +1,18 @@
|
|||||||
{ stdenv, fetchurl, buildDunePackage, alcotest, cmdliner
|
{ lib, fetchurl, buildDunePackage, alcotest, cmdliner
|
||||||
, rresult, astring, fmt, ocamlgraph, logs, bos, fpath, ptime
|
, rresult, astring, fmt, ocamlgraph, logs, bos, fpath, ptime
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildDunePackage rec {
|
buildDunePackage rec {
|
||||||
pname = "functoria";
|
pname = "functoria";
|
||||||
version = "3.1.0";
|
version = "3.1.1";
|
||||||
|
|
||||||
|
useDune2 = true;
|
||||||
|
|
||||||
minimumOCamlVersion = "4.04";
|
minimumOCamlVersion = "4.04";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
url = "https://github.com/mirage/${pname}/releases/download/v${version}/${pname}-v${version}.tbz";
|
||||||
sha256 = "15jdqdj1vfi0x9gjydrrnbwzwbzw34w1iir032jrji820xlblky2";
|
sha256 = "0bihxbq16zwsi7frk4b8wz8993mvy2ym3n6288jhv0n0gb7c2f7m";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ cmdliner rresult astring fmt ocamlgraph logs bos fpath ptime ];
|
propagatedBuildInputs = [ cmdliner rresult astring fmt ocamlgraph logs bos fpath ptime ];
|
||||||
@ -18,7 +20,7 @@ buildDunePackage rec {
|
|||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with lib; {
|
||||||
description = "A DSL to organize functor applications";
|
description = "A DSL to organize functor applications";
|
||||||
homepage = "https://github.com/mirage/functoria";
|
homepage = "https://github.com/mirage/functoria";
|
||||||
license = licenses.isc;
|
license = licenses.isc;
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
buildDunePackage {
|
buildDunePackage {
|
||||||
pname = "functoria-runtime";
|
pname = "functoria-runtime";
|
||||||
|
|
||||||
inherit (functoria) version src;
|
inherit (functoria) version useDune2 src;
|
||||||
|
|
||||||
propagatedBuildInputs = [ cmdliner fmt ];
|
propagatedBuildInputs = [ cmdliner fmt ];
|
||||||
checkInputs = [ alcotest functoria];
|
checkInputs = [ alcotest functoria];
|
||||||
|
Loading…
Reference in New Issue
Block a user