Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 682 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "ircdog"; 9 version = "0.5.5"; 10 11 src = fetchFromGitHub { 12 owner = "goshuirc"; 13 repo = "ircdog"; 14 tag = "v${version}"; 15 hash = "sha256-maF53Z0FHAhGmnOnMsX0dDnmckPNBY4Bcm4OBM/x4hQ="; 16 }; 17 18 vendorHash = null; 19 20 meta = { 21 description = "Simple wrapper over the raw IRC protocol that can respond to pings, and interprets formatting codes"; 22 mainProgram = "ircdog"; 23 homepage = "https://github.com/ergochat/ircdog"; 24 changelog = "https://github.com/ergochat/ircdog/releases/tag/v${version}"; 25 license = lib.licenses.isc; 26 maintainers = with lib.maintainers; [ hexa ]; 27 }; 28}