about summary refs log tree commit diff
path: root/pkgs/development/libraries/apache-activemq/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/apache-activemq/default.nix')
-rw-r--r--pkgs/development/libraries/apache-activemq/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/development/libraries/apache-activemq/default.nix b/pkgs/development/libraries/apache-activemq/default.nix
deleted file mode 100644
index 609d29ed69096..0000000000000
--- a/pkgs/development/libraries/apache-activemq/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchurl }:
-
-stdenv.mkDerivation rec {
-  pname = "apache-activemq";
-  version = "5.18.3";
-
-  src = fetchurl {
-    sha256 = "sha256-lDOBqm00BwfebELq2/e0G3/fk99gQVbZctUMTaeDVE8=";
-    url = "mirror://apache/activemq/${version}/${pname}-${version}-bin.tar.gz";
-  };
-
-  installPhase = ''
-    mkdir -p $out
-    mv * $out/
-    for j in `find $out/lib -name "*.jar"`; do
-      cp="''${cp:+"$cp:"}$j";
-    done
-    echo "CLASSPATH=$cp" > $out/lib/classpath.env
-  '';
-
-  meta = {
-    homepage = "https://activemq.apache.org/";
-    description = "Messaging and Integration Patterns server written in Java";
-    sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
-    license = lib.licenses.asl20;
-    platforms = lib.platforms.unix;
-  };
-
-}