Unverified Commit d9309ab0 authored by Weijia Wang's avatar Weijia Wang Committed by GitHub
Browse files

Merge pull request #313618 from fabaff/xeol-darwin

xeol: limit platform support
parents 359582a9 a5acd098
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
{ 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;
  };
}