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
522 B
Nix
Raw Normal View History

2022-05-16 01:10:26 +02:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "redli";
2022-11-12 21:07:22 +01:00
version = "0.7.0";
2022-05-16 01:10:26 +02:00
src = fetchFromGitHub {
owner = "IBM-Cloud";
repo = pname;
rev = "v${version}";
2022-11-12 21:07:22 +01:00
sha256 = "sha256-AeIGlRsUWK6q0GJJFmvJwpuGy312VPsMhkxMqDDzay4=";
2022-05-16 01:10:26 +02:00
};
vendorSha256 = 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 ];
};
}