Merge pull request #303010 from greg-hellings/init-fyne

fyne: init at 2.5.0
This commit is contained in:
Pol Dellaiera 2024-08-03 18:46:41 +02:00 committed by GitHub
commit 81ef199f06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,62 @@
{
lib,
buildGoModule,
fetchFromGitHub,
libGL,
libX11,
libXcursor,
libXinerama,
libXi,
libXrandr,
libXxf86vm,
pkg-config,
stdenv,
darwin,
}:
buildGoModule rec {
pname = "fyne";
version = "2.5.0";
src = fetchFromGitHub {
owner = "fyne-io";
repo = "fyne";
rev = "refs/tags/v${version}";
hash = "sha256-DUXCaPFMb6f7ROI8DC2RVCX12xf5F9MEtBJyi8CuoE4=";
};
vendorHash = "sha256-Mz+p2kpPtqFb/wDkwOdIUQ2fCvzWqTH49YRjWmSlF4M=";
nativeBuildInputs = [ pkg-config ];
buildInputs =
[
libGL
libX11
libXcursor
libXinerama
libXi
libXrandr
libXxf86vm
]
++ (lib.optionals stdenv.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";
};
}