about summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster
diff options
context:
space:
mode:
authorDomen Kožar <domen@dev.si>2015-11-20 19:58:38 +0100
committerDomen Kožar <domen@dev.si>2015-11-21 21:44:12 +0100
commitd83a97823c14ef861ef116098755c19bc81482e9 (patch)
treeec5b96d298cc7e0282b3e97fc7813d8f260d3b40 /pkgs/applications/networking/cluster
parent4b9487a7404ab0736a353f3c1756845474e0ead8 (diff)
buildPythonPackage: fix a few more wheel packages
Diffstat (limited to 'pkgs/applications/networking/cluster')
-rw-r--r--pkgs/applications/networking/cluster/mesos/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index f5803018c98e6..0651f729cdc9e 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -9,14 +9,14 @@ let
   soext = if stdenv.system == "x86_64-darwin" then "dylib" else "so";
 
 in stdenv.mkDerivation rec {
-  version = "0.23.1";
+  version = "0.23.0";
   name = "mesos-${version}";
 
   dontDisableStatic = true;
 
   src = fetchurl {
-    url = "http://www.apache.org/dist/mesos/${version}/mesos-${version}.tar.gz";
-    sha256 = "0ygvb0xm4m1ilwbfyjbq0dpsviicg2ab98zg96k2ypa2pa69mvpa";
+    url = "http://archive.apache.org/dist/mesos/${version}/${name}.tar.gz";
+    sha256 = "1v5xpn4wal4vcrvcklchx9slkpa8xlwqkdbnxzy9zkzpq5g3arxr";
   };
 
   patches = [