Merge pull request #313618 from fabaff/xeol-darwin

xeol: limit platform support
This commit is contained in:
Weijia Wang 2024-05-22 13:56:19 +02:00 committed by GitHub
commit d9309ab03b
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 {
@ -16,9 +17,7 @@ buildGoModule rec {
vendorHash = "sha256-9zDzwiVEVsfgVzSrouNtLYpjumoWGlfSDpGWbj+zCGQ=";
subPackages = [
"cmd/xeol/"
];
subPackages = [ "cmd/xeol/" ];
ldflags = [
"-w"
@ -36,5 +35,6 @@ buildGoModule rec {
license = licenses.asl20;
maintainers = with maintainers; [ fab ];
mainProgram = "xeol";
platforms = platforms.linux;
};
}