about summary refs log tree commit diff
path: root/pkgs/development/libraries/apache-activemq
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2016-03-14 20:56:07 -0500
committerGraham Christensen <graham@grahamc.com>2016-03-14 20:56:07 -0500
commit2be76d8b48956e8e6d848e705c55db7243f56a96 (patch)
tree11452659f401f6b383729e685f91d52244aa1bcf /pkgs/development/libraries/apache-activemq
parent6f982e13d5e4109e81babb2cf4ea347a4903af83 (diff)
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.
Diffstat (limited to 'pkgs/development/libraries/apache-activemq')
-rw-r--r--pkgs/development/libraries/apache-activemq/5.12.nix6
-rw-r--r--pkgs/development/libraries/apache-activemq/5.8.nix6
-rw-r--r--pkgs/development/libraries/apache-activemq/default.nix (renamed from pkgs/development/libraries/apache-activemq/recent.nix)7
3 files changed, 3 insertions, 16 deletions
diff --git a/pkgs/development/libraries/apache-activemq/5.12.nix b/pkgs/development/libraries/apache-activemq/5.12.nix
deleted file mode 100644
index e2e3af96532ad..0000000000000
--- a/pkgs/development/libraries/apache-activemq/5.12.nix
+++ /dev/null
@@ -1,6 +0,0 @@
-import ./recent.nix
-  rec {
-    version = "5.12.1";
-    sha256 = "1hn6pls12dzc2fngz6lji7kmz7blvd3z1dq4via8gd4fjflmw5c9";
-    mkUrl = name: "mirror://apache/activemq/${version}/${name}-bin.tar.gz";
-  }
diff --git a/pkgs/development/libraries/apache-activemq/5.8.nix b/pkgs/development/libraries/apache-activemq/5.8.nix
deleted file mode 100644
index 7e4644895e964..0000000000000
--- a/pkgs/development/libraries/apache-activemq/5.8.nix
+++ /dev/null
@@ -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";
-  }
diff --git a/pkgs/development/libraries/apache-activemq/recent.nix b/pkgs/development/libraries/apache-activemq/default.nix
index a69880233433a..0e3a1ccd3c486 100644
--- a/pkgs/development/libraries/apache-activemq/recent.nix
+++ b/pkgs/development/libraries/apache-activemq/default.nix
@@ -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" ];