diff --git a/pkgs/tools/networking/redli/default.nix b/pkgs/tools/networking/redli/default.nix new file mode 100644 index 00000000000..d6a9f6f8709 --- /dev/null +++ b/pkgs/tools/networking/redli/default.nix @@ -0,0 +1,22 @@ +{ buildGoModule, fetchFromGitHub, lib }: + +buildGoModule rec { + pname = "redli"; + version = "0.5.2"; + + src = fetchFromGitHub { + owner = "IBM-Cloud"; + repo = pname; + rev = "v${version}"; + sha256 = "sha256-bR02R9M3041oNUEQId1zgAxMNPyXXQNAYEyE/XIDdPE="; + }; + + vendorSha256 = 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 ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 223f872aaf7..3f1bc0caf3f 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -21772,6 +21772,8 @@ with pkgs; redis = callPackage ../servers/nosql/redis { }; + redli = callPackage ../tools/networking/redli { }; + redstore = callPackage ../servers/http/redstore { }; reproxy = callPackage ../servers/reproxy { };