1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
{
lib,
buildGoModule,
fetchFromGitHub,
libGL,
libX11,
libXcursor,
libXinerama,
libXi,
libXrandr,
libXxf86vm,
pkg-config,
stdenv,
darwin,
}:
buildGoModule rec {
pname = "fyne";
version = "2.5.5";
src = fetchFromGitHub {
owner = "fyne-io";
repo = "fyne";
tag = "v${version}";
hash = "sha256-cttw4Al7zn7hlKu8n7by+m2p9Xm7ZoCtMb9VuAFdP6k=";
};
vendorHash = "sha256-X6K7IV+yjKXw/1A5HikS0T8rtrn7gLZM2d0VoyIdOT4=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
[
libGL
libX11
libXcursor
libXinerama
libXi
libXrandr
libXxf86vm
]
++ (lib.optionals stdenv.hostPlatform.isDarwin (
with darwin.apple_sdk_11_0.frameworks;
[
Carbon
Cocoa
Kernel
UserNotifications
]
));
doCheck = false;
meta = with lib; {
homepage = "https://fyne.io";
description = "Cross platform GUI toolkit in Go";
license = licenses.bsd3;
maintainers = with maintainers; [ greg ];
mainProgram = "fyne";
};
}
|