cassandra 2.1.0 -> 2.1.2

The old tarball was gone. I'll maintain it while I use it.
This commit is contained in:
Tobias Geerinckx-Rice 2015-01-20 10:28:26 +01:00
parent 130f66b683
commit f02ced85c6

View file

@ -8,13 +8,13 @@
, getopt , getopt
}: }:
let version = "2.1.0"; let version = "2.1.2";
in stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "cassandra-${version}"; name = "cassandra-${version}";
src = fetchurl { src = fetchurl {
url = "http://apache.cs.utah.edu/cassandra/${version}/apache-${name}-bin.tar.gz"; url = "http://apache.cs.utah.edu/cassandra/${version}/apache-${name}-bin.tar.gz";
sha256 = "da99c4ebc8de925dc6b493443b70d2183cf3090b1aad6b6b918efa9565f264dd"; sha256 = "1glpv3d1c63ccqnfjzz76cxb508qyvbgva26h5j7k8dd5av84lcr";
}; };
buildInputs = [ makeWrapper ]; buildInputs = [ makeWrapper ];
@ -34,10 +34,11 @@ in stdenv.mkDerivation rec {
wrapProgram $out/bin/cqlsh --prefix PATH : ${python}/bin wrapProgram $out/bin/cqlsh --prefix PATH : ${python}/bin
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://cassandra.apache.org/; homepage = http://cassandra.apache.org/;
description = "A massively scalable open source NoSQL database"; description = "A massively scalable open source NoSQL database";
platforms = stdenv.lib.platforms.all; platforms = with platforms; all;
license = stdenv.lib.licenses.asl20; license = with licenses; asl20;
maintainers = with maintainers; [ nckx ];
}; };
} }