mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
4e42cac49d
This change was produced by searching for remaining occurrences of stdenv.lib and replacing them manually. Reference #108938.
33 lines
1,003 B
Nix
33 lines
1,003 B
Nix
{ stdenv, lib, fetchFromGitHub, ocaml, findlib, camlp4, ocamlbuild
|
|
, erm_xml, mirage-crypto, mirage-crypto-rng, base64
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.3+20200317";
|
|
name = "ocaml${ocaml.version}-erm_xmpp-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hannesm";
|
|
repo = "xmpp";
|
|
rev = "7fa5bea252671fd88625c6af109998b879ca564f";
|
|
sha256 = "0spzyd9kbyizzwl8y3mq8z19zlkzxnkh2fppry4lyc7vaw7bqrwq";
|
|
};
|
|
|
|
buildInputs = [ ocaml findlib ocamlbuild camlp4 ];
|
|
propagatedBuildInputs = [ erm_xml mirage-crypto mirage-crypto-rng base64 ];
|
|
|
|
configurePhase = "ocaml setup.ml -configure --prefix $out";
|
|
buildPhase = "ocaml setup.ml -build";
|
|
installPhase = "ocaml setup.ml -install";
|
|
|
|
createFindlibDestdir = true;
|
|
|
|
meta = {
|
|
homepage = "https://github.com/hannesm/xmpp";
|
|
description = "OCaml based XMPP implementation (fork)";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ sternenseemann ];
|
|
inherit (ocaml.meta) platforms;
|
|
};
|
|
}
|