-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #156740 from Tchekda/feature/redli-package
redli: init at 0.5.2
- Loading branch information
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12434,6 +12434,16 @@ | |
githubId = 66133083; | ||
name = "Tomas Bravo"; | ||
}; | ||
tchekda = { | ||
email = "[email protected]"; | ||
github = "tchekda"; | ||
githubId = 23559888; | ||
keys = [{ | ||
longkeyid = "rsa4096/0xD0A007EDA4EADA0F"; | ||
fingerprint = "44CE A8DD 3B31 49CD 6246 9D8F D0A0 07ED A4EA DA0F"; | ||
}]; | ||
name = "David Tchekachev"; | ||
}; | ||
tckmn = { | ||
email = "[email protected]"; | ||
github = "tckmn"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ buildGoModule, fetchFromGitHub, lib }: | ||
|
||
buildGoModule rec { | ||
pname = "redli"; | ||
version = "0.5.2"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "IBM-Cloud"; | ||
repo = pname; | ||
rev = "v${version}"; | ||
sha256 = "sha256-bR02R9M3041oNUEQId1zgAxMNPyXXQNAYEyE/XIDdPE="; | ||
}; | ||
|
||
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 ]; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters