e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
22 lines
519 B
Nix
22 lines
519 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "redli";
|
|
version = "0.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "IBM-Cloud";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Tux4GsYG3DlJoV10Ahb+X+8mpkchLchbh+PCgRD0kUA=";
|
|
};
|
|
|
|
vendorHash = null;
|
|
|
|
meta = with lib; {
|
|
description = "A humane alternative to the Redis-cli and TLS";
|
|
homepage = "https://github.com/IBM-Cloud/redli";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ tchekda ];
|
|
};
|
|
}
|