Skip to content

Commit

Permalink
redli : init at 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Tchekda committed May 15, 2022
1 parent e02aeee commit a504cc1
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pkgs/tools/networking/redli/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit a504cc1

Please sign in to comment.