Commit b376c14b authored by Robert Hensing's avatar Robert Hensing
Browse files

cassandra: Use our cassandra-driver for cqlsh

... instead of bundled `cassandra-driver-internal-only-*.zip`.
This way it's more up to date, and follows our best practices.
"internal" plainly confirms that this is better.
parent ab2aa991
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -111,6 +111,8 @@ stdenv.mkDerivation rec {
    rm $out/bin/cqlsh
    # Make "cqlsh.py" accessible by invoking "cqlsh"
    ln -s $out/bin/cqlsh.py $out/bin/cqlsh
    # Use nixpkgs Python packages instead of bundled zips
    makeWrapperArgs+=("--set" "CQLSH_NO_BUNDLED" "1")
    wrapPythonPrograms
  '';