activemq: 5.8.0 -> 5.13.2

It seems Activemq was "split" in to 5.8.0 and 5.12.1 only to keep from
trampling someone on 5.8.0. This is to the point of not upgrading the
default, but making a new activemq attribute specific for 512.

As far as I can tell, there is no good reason to stay providing 5.8.0,
so this is the proposal to delete it.

Note: There are over 1,000 fixes between 5.9.0 to 5.13.2.
This commit is contained in:
Graham Christensen 2016-03-14 20:56:07 -05:00
parent 6f982e13d5
commit 2be76d8b48
4 changed files with 4 additions and 19 deletions

View file

@ -1,6 +0,0 @@
import ./recent.nix
rec {
version = "5.12.1";
sha256 = "1hn6pls12dzc2fngz6lji7kmz7blvd3z1dq4via8gd4fjflmw5c9";
mkUrl = name: "mirror://apache/activemq/${version}/${name}-bin.tar.gz";
}

View file

@ -1,6 +0,0 @@
import ./recent.nix
rec {
version = "5.8.0";
sha256 = "12a1lmmqapviqdgw307jm07vw1z5q53r56pkbp85w9wnqwspjrbk";
mkUrl = name: "mirror://apache/activemq/apache-activemq/${version}/${name}-bin.tar.gz";
}

View file

@ -1,13 +1,12 @@
{ version, sha256, mkUrl }:
# use a function to make the source url, because the url schemes differ between 5.8.0 and greater
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "apache-activemq-${version}";
version = "5.13.2";
src = fetchurl {
url = mkUrl name;
inherit sha256;
sha256 = "0vrgny8fw973xvr3w4wc1s44z50b0c2hgcqa91s8fbx2yjmqn5xy";
url = "mirror://apache/activemq/${version}/${name}-bin.tar.gz";
};
phases = [ "unpackPhase" "installPhase" ];

View file

@ -6406,9 +6406,7 @@ let
acl = callPackage ../development/libraries/acl { };
activemq = callPackage ../development/libraries/apache-activemq/5.8.nix { };
activemq512 = callPackage ../development/libraries/apache-activemq/5.12.nix { };
activemq = callPackage ../development/libraries/apache-activemq { };
adns = callPackage ../development/libraries/adns { };