Merge pull request #313592 from fabaff/aeacus-darwin

aeacus: limit platform support
This commit is contained in:
Weijia Wang 2024-05-22 13:48:20 +02:00 committed by GitHub
commit 93cf66f894
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,7 @@
{ lib
, buildGoModule
, fetchFromGitHub
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
@ -31,5 +32,6 @@ buildGoModule rec {
license = licenses.gpl2Only;
maintainers = with maintainers; [ fab ];
mainProgram = "aeacus";
platforms = platforms.linux;
};
}