gofaxip: init at 1.4-2

Co-authored-by: Donovan Glover <donovan@dglover.co>
Co-authored-by: awwpotato <153149335+awwpotato@users.noreply.github.com>
Co-authored-by: Nikolay Korotkiy <sikmir@disroot.org>

+35
+35
pkgs/by-name/go/gofaxip/package.nix
··· 1 + { 2 + buildGoModule, 3 + fetchFromGitHub, 4 + lib, 5 + }: 6 + 7 + buildGoModule (finalAttrs: { 8 + pname = "gofaxip"; 9 + version = "1.4-2"; 10 + 11 + src = fetchFromGitHub { 12 + owner = "gonicus"; 13 + repo = "gofaxip"; 14 + tag = "v${finalAttrs.version}"; 15 + hash = "sha256-Fo/sNXE/GdTImg0Kd3QxWDlpJgN2OJNxX2YjL50kzW0="; 16 + }; 17 + 18 + vendorHash = null; 19 + 20 + ldflags = [ 21 + "-s" 22 + "-w" 23 + "-X main.version=${finalAttrs.version}" 24 + ]; 25 + 26 + env.CI = "1"; 27 + 28 + meta = { 29 + description = "T.38 backend for HylaFAX using FreeSWITCH"; 30 + homepage = "https://github.com/gonicus/gofaxip"; 31 + changelog = "https://github.com/gonicus/gofaxip/releases/tag/v${finalAttrs.version}"; 32 + license = lib.licenses.gpl2Plus; 33 + maintainers = with lib.maintainers; [ annaaurora ]; 34 + }; 35 + })