mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
23 lines
632 B
Nix
23 lines
632 B
Nix
{ stdenv, fetchzip, ocaml, findlib, ocamlbuild, lwt, react }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.0.1";
|
|
name = "ocaml${ocaml.version}-lwt_react-${version}";
|
|
src = fetchzip {
|
|
url = "https://github.com/ocsigen/lwt/releases/download/3.0.0/lwt_react-1.0.1.tar.gz";
|
|
sha256 = "1bbz7brvdskf4angzn3q2s2s6qdnx7x8m8syayysh23gwv4c7v31";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild ];
|
|
|
|
propagatedBuildInputs = [ lwt react ];
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
description = "Helpers for using React with Lwt";
|
|
inherit (lwt.meta) homepage license maintainers;
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|