ocamlPackages.dispatch: 0.4.1 → 0.5.0
ocamlPackages.webmachine: 0.6.2 → 0.7.0
This commit is contained in:
committed by
Vincent Laporte
parent
c1e60d9584
commit
597e7748d1
@@ -1,21 +1,23 @@
|
||||
{ lib, buildDunePackage, fetchFromGitHub, alcotest, result }:
|
||||
{ lib, buildDunePackage, fetchFromGitHub, ocaml, alcotest, result }:
|
||||
|
||||
buildDunePackage rec {
|
||||
pname = "dispatch";
|
||||
version = "0.4.1";
|
||||
version = "0.5.0";
|
||||
|
||||
useDune2 = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "inhabitedtype";
|
||||
repo = "ocaml-dispatch";
|
||||
rev = version;
|
||||
sha256 = "05kb9zcihk50r2haqz8vrlr7kmaka6vrs4j1z500lmnl877as6qr";
|
||||
sha256 = "12r39ylbxc297cbwjadhd1ghxnwwcdzfjk68r97wim8hcgzxyxv4";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ result ];
|
||||
|
||||
checkInputs = lib.optional doCheck alcotest;
|
||||
checkInputs = [ alcotest ];
|
||||
|
||||
doCheck = true;
|
||||
doCheck = lib.versionAtLeast ocaml.version "4.05";
|
||||
|
||||
meta = {
|
||||
inherit (src.meta) homepage;
|
||||
|
||||
Reference in New Issue
Block a user