depot/third_party/nixpkgs/pkgs/tools/networking/redli/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

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 ];
};
}