nixpkgs/pkgs/tools/networking/redli/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
519 B
Nix
Raw Normal View History

2022-05-15 23:10:26 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "redli";
2024-01-09 11:07:36 +00:00
version = "0.11.0";
2022-05-15 23:10:26 +00:00
src = fetchFromGitHub {
owner = "IBM-Cloud";
repo = pname;
rev = "v${version}";
2024-01-09 11:07:36 +00:00
hash = "sha256-Tux4GsYG3DlJoV10Ahb+X+8mpkchLchbh+PCgRD0kUA=";
2022-05-15 23:10:26 +00:00
};
2023-07-11 12:32:07 +00:00
vendorHash = null;
2022-05-15 23:10:26 +00:00
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 ];
};
}