ocamlPackages.dream-pure: init at 1.0.0-alpha8

This commit is contained in:
Vincent Laporte
2025-02-12 03:55:54 +01:00
committed by Vincent Laporte
parent 4232450052
commit dab601686d
2 changed files with 40 additions and 0 deletions
@@ -0,0 +1,38 @@
{
lib,
buildDunePackage,
fetchurl,
lwt_ppx,
base64,
hmap,
lwt,
ptime,
uri,
}:
buildDunePackage rec {
pname = "dream-pure";
version = "1.0.0-alpha8";
src = fetchurl {
url = "https://github.com/aantron/dream/releases/download/${version}/dream-${version}.tar.gz";
hash = "sha256-I+2BKJDAP+XJl0pJYano5iEmvte8fX0UQLhGUslc8pY=";
};
buildInputs = [ lwt_ppx ];
propagatedBuildInputs = [
base64
hmap
lwt
ptime
uri
];
meta = {
description = "Shared HTTP types for Dream (server) and Hyper (client)";
homepage = "https://aantron.github.io/dream/";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.vbgl ];
};
}
+2
View File
@@ -383,6 +383,8 @@ let
dot-merlin-reader = callPackage ../development/tools/ocaml/merlin/dot-merlin-reader.nix { };
dream-pure = callPackage ../development/ocaml-modules/dream/pure.nix { };
dscheck = callPackage ../development/ocaml-modules/dscheck { };
dssi = callPackage ../development/ocaml-modules/dssi { };