Files
nixpkgs/pkgs/development/ocaml-modules/reactivedata/default.nix
T

27 lines
917 B
Nix
Raw Normal View History

2016-12-10 09:58:33 +00:00
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, ocaml_react, opam }:
2014-10-10 23:33:22 +01:00
2016-12-10 09:58:33 +00:00
assert stdenv.lib.versionAtLeast ocaml.version "3.11";
2014-10-10 23:33:22 +01:00
stdenv.mkDerivation {
2016-12-10 09:58:33 +00:00
name = "ocaml${ocaml.version}-reactiveData-0.2.1";
2014-10-10 23:33:22 +01:00
src = fetchurl {
2016-12-10 09:58:33 +00:00
url = https://github.com/ocsigen/reactiveData/archive/0.2.1.tar.gz;
sha256 = "0wcs0z50nia1cpk8mh6i5qbc6sff9cc8x7s7q1q89d7m73bnv4vf";
2014-10-10 23:33:22 +01:00
};
2016-12-10 09:58:33 +00:00
buildInputs = [ ocaml findlib ocamlbuild opam ];
2014-10-10 23:33:22 +01:00
propagatedBuildInputs = [ocaml_react];
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
2016-12-10 09:58:33 +00:00
installPhase = "opam-installer -i --prefix=$out --libdir=$OCAMLFIND_DESTDIR";
2014-10-10 23:33:22 +01:00
meta = with stdenv.lib; {
description = "An OCaml module for functional reactive programming (FRP) based on React";
2016-05-30 17:36:49 +02:00
homepage = https://github.com/ocsigen/reactiveData;
2014-10-10 23:33:22 +01:00
license = licenses.lgpl21;
platforms = ocaml.meta.platforms or [];
2014-10-10 23:33:22 +01:00
maintainers = with maintainers; [ vbgl ];
};
}