rio: 0.0.36 -> 0.0.37
[NixPkgs.git] / pkgs / tools / networking / redli / default.nix
blob9703fe4d4089e4a74f2bd93b7c6b4119c84c3a83
1 { buildGoModule, fetchFromGitHub, lib }:
3 buildGoModule rec {
4   pname = "redli";
5   version = "0.13.0";
7   src = fetchFromGitHub {
8     owner = "IBM-Cloud";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-uXTzDRluBP9pm0SM8sIiGIvvbwATO60JQfQpXWGl5EA=";
12   };
14   vendorHash = null;
16   meta = with lib; {
17     description = "A humane alternative to the Redis-cli and TLS";
18     homepage = "https://github.com/IBM-Cloud/redli";
19     license = licenses.asl20;
20     maintainers = with maintainers; [ tchekda ];
21     mainProgram = "redli";
22   };