nixpkgs/pkgs/development/ocaml-modules/react/default.nix
2026-06-20 22:10:56 +02:00

40 lines
751 B
Nix

{
lib,
stdenv,
fetchurl,
ocaml,
findlib,
topkg,
ocamlbuild,
}:
stdenv.mkDerivation rec {
pname = "ocaml-react";
version = "1.2.2";
src = fetchurl {
url = "https://erratique.ch/software/react/releases/react-${version}.tbz";
sha256 = "sha256-xK3TFdbx8VPRFe58qN1gwSZf9NQIwmYSX8tRJP0ij5k=";
};
nativeBuildInputs = [
ocaml
findlib
ocamlbuild
];
buildInputs = [ topkg ];
strictDeps = true;
inherit (topkg) buildPhase installPhase;
meta = {
homepage = "https://erratique.ch/software/react";
description = "Applicative events and signals for OCaml";
license = lib.licenses.bsd3;
inherit (ocaml.meta) platforms;
maintainers = with lib.maintainers; [
gal_bolle
];
};
}