571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
966 B
Nix
43 lines
966 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";
|
|
mainProgram = "riot-redis";
|
|
license = licenses.asl20;
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
maintainers = with maintainers; [ wesnel ];
|
|
};
|
|
}
|