mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
42 lines
934 B
Nix
42 lines
934 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchzip
|
|
, jre_headless
|
|
, makeWrapper
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "riot-redis";
|
|
version = "2.19.0";
|
|
|
|
src = fetchzip {
|
|
url = "https://github.com/redis-developer/riot/releases/download/v${version}/riot-redis-${version}.zip";
|
|
sha256 = "sha256-q2ZqFVdjg5HSH4kiwoC1W+a8VgHNxBgNeMaw5n97isc=";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|