summary refs log tree commit diff
diff options
context:
space:
mode:
authorrushmorem <rushmore@webenchanter.com>2015-05-14 17:12:09 +0200
committerrushmorem <rushmore@webenchanter.com>2015-05-14 18:02:09 +0200
commit7b028de543d7529f86233c4082ccc04f0accd8ef (patch)
treed6ea5308164ea9371e295cc64ba1aaf081b622e8
parent78c6fd6e689f83150b8e9f7c976d0322a0340cff (diff)
downloadnixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar.gz
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar.bz2
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar.lz
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar.xz
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.tar.zst
nixlib-7b028de543d7529f86233c4082ccc04f0accd8ef.zip
Fix mesos-0.22 build and update to 0.22.1
-rw-r--r--pkgs/applications/networking/cluster/mesos/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/networking/cluster/mesos/default.nix b/pkgs/applications/networking/cluster/mesos/default.nix
index 9458ffc39256..c330b8acfbf3 100644
--- a/pkgs/applications/networking/cluster/mesos/default.nix
+++ b/pkgs/applications/networking/cluster/mesos/default.nix
@@ -1,5 +1,5 @@
 { stdenv, lib, makeWrapper, fetchurl, curl, sasl, openssh, autoconf
-, automake, libtool, unzip, gnutar, jdk, maven, python, wrapPython
+, automake114x, libtool, unzip, gnutar, jdk, maven, python, wrapPython
 , setuptools, distutils-cfg, boto, pythonProtobuf, apr, subversion
 , leveldb, glog, perf, utillinux, libnl, iproute
 }:
@@ -9,18 +9,18 @@ let
   soext = if stdenv.system == "x86_64-darwin" then "dylib" else "so";
 
 in stdenv.mkDerivation rec {
-  version = "0.22.0";
+  version = "0.22.1";
   name = "mesos-${version}";
 
   dontDisableStatic = true;
 
   src = fetchurl {
     url = "http://www.apache.org/dist/mesos/${version}/mesos-${version}.tar.gz";
-    sha256 = "0z8c1vr7b06l3nqgbxq8ydcz79ayw75y2szipfqkw17c7gv6d7v8";
+    sha256 = "0ry0ppzgpab68fz5bzd7ry5rjbg8xjz73x1x4c5id42cpsqnn7x5";
   };
 
   buildInputs = [
-    makeWrapper autoconf automake libtool curl sasl jdk maven
+    makeWrapper autoconf automake114x libtool curl sasl jdk maven
     python wrapPython boto distutils-cfg setuptools leveldb
     subversion apr glog
   ] ++ lib.optionals stdenv.isLinux [
@@ -129,7 +129,7 @@ in stdenv.mkDerivation rec {
     homepage    = "http://mesos.apache.org";
     license     = licenses.asl20;
     description = "A cluster manager that provides efficient resource isolation and sharing across distributed applications, or frameworks";
-    maintainers = with maintainers; [ cstrahan offline ];
+    maintainers = with maintainers; [ cstrahan offline rushmorem ];
     platforms   = with platforms; linux;
   };
 }