8 stdenv.mkDerivation rec {
13 url = "https://github.com/redis-developer/riot/releases/download/v${version}/riot-redis-${version}.zip";
14 sha256 = "sha256-q2ZqFVdjg5HSH4kiwoC1W+a8VgHNxBgNeMaw5n97isc=";
17 buildInputs = [ jre_headless ];
18 nativeBuildInputs = [ makeWrapper ];
24 cp bin/riot-redis $out/bin
28 wrapProgram $out/bin/riot-redis \
29 --set JAVA_HOME "${jre_headless}"
35 homepage = "https://github.com/redis-developer/riot";
36 description = "Get data in and out of Redis";
37 license = licenses.asl20;
38 sourceProvenance = with sourceTypes; [ binaryBytecode ];
39 maintainers = with maintainers; [ wesnel ];