We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7114739 commit 7932ed2Copy full SHA for 7932ed2
pkgs/by-name/go/gofaxip/package.nix
@@ -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