1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4 pname = "apache-activemq";
8 sha256 = "sha256-QhY4ckDvOOkS+IFixS4mEo8PctFZEIUtEusKeEWBkZU=";
9 url = "mirror://apache/activemq/${version}/${pname}-${version}-bin.tar.gz";
15 for j in `find $out/lib -name "*.jar"`; do
16 cp="''${cp:+"$cp:"}$j";
18 echo "CLASSPATH=$cp" > $out/lib/classpath.env
22 homepage = "https://activemq.apache.org/";
23 description = "Messaging and Integration Patterns server written in Java";
24 sourceProvenance = with lib.sourceTypes; [ binaryBytecode ];
25 license = lib.licenses.asl20;
26 platforms = lib.platforms.unix;