Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 28 lines 709 B view raw
1{ 2 lib, 3 buildGoModule, 4 fetchFromGitHub, 5}: 6 7buildGoModule rec { 8 pname = "irccat"; 9 version = "0.4.12"; 10 11 src = fetchFromGitHub { 12 owner = "irccloud"; 13 repo = "irccat"; 14 rev = "v${version}"; 15 hash = "sha256-W6Qj+zg6jC304bEIQeFB8unSFgjV60zXV+I8hpw3AFA="; 16 }; 17 18 vendorHash = "sha256-SUE868jVJywqE0A5yjMWohrMw58OUnxGGxvcR8UzPfE="; 19 20 meta = { 21 homepage = "https://github.com/irccloud/irccat"; 22 changelog = "https://github.com/irccloud/irccat/releases/tag/v${version}0.4.11"; 23 description = "Send events to IRC channels from scripts and other applications"; 24 mainProgram = "irccat"; 25 maintainers = with lib.maintainers; [ qyliss ]; 26 license = lib.licenses.gpl3Only; 27 }; 28}