summary refs log tree commit diff
path: root/pkgs/development/ocaml-modules/erm_xmpp
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2016-11-04 12:24:57 +0100
committerProfpatsch <mail@profpatsch.de>2016-11-04 12:24:57 +0100
commit2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213 (patch)
tree947e0194e8689d45eb9d83aaa27c3471bcbfd350 /pkgs/development/ocaml-modules/erm_xmpp
parentc5cac5051af83b41c3601e7e7116f7b49c8dd010 (diff)
downloadnixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.gz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.bz2
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.lz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.xz
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.tar.zst
nixpkgs-2bd86e9e47d82acf296b353e2bd6b5cb6b7ba213.zip
Revert "Merge pull request #20090 from sternenseemann/master"
Reason: https://github.com/NixOS/nixpkgs/pull/20090#commitcomment-19686426

This reverts commit 9ffcb1b2503303bfdb4a8fc31c8e4160184eb74c, reversing
changes made to a6283c1126676d30de3abfb3ee8865505da0ed43.
Diffstat (limited to 'pkgs/development/ocaml-modules/erm_xmpp')
-rw-r--r--pkgs/development/ocaml-modules/erm_xmpp/0.3.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/ocaml-modules/erm_xmpp/0.3.nix b/pkgs/development/ocaml-modules/erm_xmpp/0.3.nix
deleted file mode 100644
index 9a57c3f7b27..00000000000
--- a/pkgs/development/ocaml-modules/erm_xmpp/0.3.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ stdenv, buildOcaml, fetchFromGitHub, fetchurl, ocaml, findlib, erm_xml, nocrypto, camlp4 }:
-
-buildOcaml rec {
-  version = "0.3";
-  name = "erm_xmpp";
-
-  src = fetchFromGitHub {
-    owner  = "hannesm";
-    repo   = "xmpp";
-    rev    = "eee18bd3dd343550169969c0b45548eafd51cfe1";
-    sha256 = "0hzs528lrx1ayalv6fh555pjn0b4l8xch1f72hd3b07g1xahdas5";
-  };
-
-  buildInputs = [ ocaml findlib camlp4 ];
-  propagatedBuildInputs = [ erm_xml nocrypto ];
-
-  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 = stdenv.lib.licenses.bsd3;
-    maintainers = with stdenv.lib.maintainers; [ sternenseemann ];
-  };
-}