Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "irccat"; 5 version = "0.4.8"; 6 7 src = fetchFromGitHub { 8 owner = "irccloud"; 9 repo = "irccat"; 10 rev = "v${version}"; 11 sha256 = "sha256-fr5x1usviJPbc4t5SpIVgV9Q6071XG8eYtyeyraddts="; 12 }; 13 14 vendorSha256 = "030hnkwh45yqppm96yy15j82skf7wmax5xkm7j5khr1l9lrz4591"; 15 16 meta = with lib; { 17 homepage = "https://github.com/irccloud/irccat"; 18 description = "Send events to IRC channels from scripts and other applications"; 19 maintainers = with maintainers; [ qyliss ]; 20 license = licenses.gpl3Only; 21 }; 22}