depot/third_party/nixpkgs/pkgs/tools/networking/redli/default.nix
Default email c7cb07f092 Project import generated by Copybara.
GitOrigin-RevId: 1536926ef5621b09bba54035ae2bb6d806d72ac8
2024-02-29 21:09:43 +01:00

23 lines
546 B
Nix

{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "redli";
version = "0.12.0";
src = fetchFromGitHub {
owner = "IBM-Cloud";
repo = pname;
rev = "v${version}";
hash = "sha256-DKARqhoSaTQEUm+xUwAFFLR65q1L+bab7+50LONwvEQ=";
};
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 ];
mainProgram = "redli";
};
}