biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / networking / redli / default.nix
blob07897de0397a2342ef46d9902e35943cff9c467e
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 = "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   };