nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 27 lines 600 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 buildGoModule, 5}: 6 7buildGoModule rec { 8 pname = "redli"; 9 version = "0.16.0"; 10 11 src = fetchFromGitHub { 12 owner = "IBM-Cloud"; 13 repo = "redli"; 14 tag = "v${version}"; 15 hash = "sha256-pEEfJWDwMBkx2Ff9pHuvO6N8FvEe93pOI3EO40sNV+8="; 16 }; 17 18 vendorHash = "sha256-30a/cZNkXsR0+fv74mfFZnvsylqJDRU72t/cwJur1dU="; 19 20 meta = { 21 description = "Humane alternative to the Redis-cli and TLS"; 22 homepage = "https://github.com/IBM-Cloud/redli"; 23 license = lib.licenses.asl20; 24 maintainers = with lib.maintainers; [ tchekda ]; 25 mainProgram = "redli"; 26 }; 27}