nixpkgs/pkgs/development/ocaml-modules/react/default.nix

36 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, opam }:
stdenv.mkDerivation {
2016-05-30 15:35:42 +00:00
name = "ocaml-react-1.2.0";
src = fetchurl {
2016-05-30 15:35:42 +00:00
url = http://erratique.ch/software/react/releases/react-1.2.0.tbz;
sha256 = "0knhgbngphv5sp1yskfd97crf169qhpc0igr6w7vqw0q36lswyl8";
};
2014-04-23 15:00:50 +00:00
unpackCmd = "tar xjf $src";
buildInputs = [ ocaml findlib ocamlbuild opam ];
2014-01-30 23:10:20 +00:00
createFindlibDestdir = true;
2014-04-23 15:00:50 +00:00
configurePhase = "ocaml pkg/git.ml";
buildPhase = "ocaml pkg/build.ml native=true native-dynlink=true";
2014-06-07 19:33:04 +00:00
installPhase =
let ocamlVersion = (builtins.parseDrvName (ocaml.name)).version;
in
''
2014-04-23 15:00:50 +00:00
opam-installer --script --prefix=$out react.install > install.sh
2014-06-07 19:33:04 +00:00
sed -i s!lib/react!lib/ocaml/${ocamlVersion}/site-lib/react! install.sh
2014-04-23 15:00:50 +00:00
sh install.sh
'';
2014-04-23 15:00:50 +00:00
meta = with stdenv.lib; {
homepage = http://erratique.ch/software/react;
description = "Applicative events and signals for OCaml";
2014-04-23 15:00:50 +00:00
license = licenses.bsd3;
platforms = ocaml.meta.platforms or [];
2014-06-07 19:33:04 +00:00
maintainers = with maintainers; [ z77z vbmithr gal_bolle];
};
}