Skip to content

Commit 7932ed2

Browse files
auroraannadonovanglover
andcommittedMar 23, 2025
gofaxip: init at 1.4-2
Co-authored-by: Donovan Glover <donovan@dglover.co>
1 parent 7114739 commit 7932ed2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed
 

‎pkgs/by-name/go/gofaxip/package.nix

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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+
env.CI = "1";
21+
22+
meta = {
23+
description = "T.38 backend for HylaFAX using FreeSWITCH";
24+
homepage = "https://github.com/gonicus/gofaxip";
25+
license = lib.licenses.gpl2Plus;
26+
maintainers = with lib.maintainers; [ annaaurora ];
27+
};
28+
})

0 commit comments

Comments
 (0)
Failed to load comments.