riot-redis: init at 2.17.0

This commit is contained in:
Wesley Nelson 2022-08-19 01:54:34 -07:00
parent 0d9cbe73ea
commit 7912cc116f
No known key found for this signature in database
GPG key ID: 8AB4F50FF6C15D42
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, stdenv
, fetchzip
, jre_headless
, makeWrapper
}:
stdenv.mkDerivation rec {
pname = "riot-redis";
version = "2.17.0";
src = fetchzip {
url = "https://github.com/redis-developer/riot/releases/download/v${version}/riot-redis-${version}.zip";
sha256 = "sha256-Blhjss0ypHzdd3XTRzzHnIPg8+m1ke7a+8VuBB6oA/0=";
};
buildInputs = [ jre_headless ];
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp bin/riot-redis $out/bin
cp -R lib $out
chmod +x $out/bin/*
wrapProgram $out/bin/riot-redis \
--set JAVA_HOME "${jre_headless}"
runHook postInstall
'';
meta = with lib; {
homepage = "https://github.com/redis-developer/riot";
description = "Get data in and out of Redis";
license = licenses.asl20;
sourceProvenance = with sourceTypes; [ binaryBytecode ];
maintainers = with maintainers; [ wesnel ];
};
}

View file

@ -508,6 +508,8 @@ with pkgs;
resolve-march-native = callPackage ../development/tools/resolve-march-native { };
riot-redis = callPackage ../development/tools/riot-redis { };
ptouch-print = callPackage ../misc/ptouch-print { };
demoit = callPackage ../servers/demoit { };