Unverified Commit 175065fc authored by Nick Cao's avatar Nick Cao Committed by GitHub
Browse files

Merge pull request #311910 from r-ryantm/auto-update/go2tv

go2tv: 1.16.0 -> 1.16.1
parents e332ac4b 9376ef9d
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -14,13 +14,13 @@

buildGoModule rec {
  pname = "go2tv" + lib.optionalString (!withGui) "-lite";
  version = "1.16.0";
  version = "1.16.1";

  src = fetchFromGitHub {
    owner = "alexballas";
    repo = "go2tv";
    rev = "v${version}";
    sha256 = "sha256-ZP4ZpNc5l4Acw83Q4rSvPYByvgiKpkbxxu0bseivW58=";
    rev = "refs/tags/v${version}";
    hash = "sha256-7m5GikrdcrJyl+KYuSk1JWLW2SsHOcBJNJuq2BahxHc=";
  };

  vendorHash = "sha256-na79rF/9o+s6E4i08Ocs6u98IABc19sTGFvjI6yeJFo=";
@@ -39,7 +39,8 @@ buildGoModule rec {
  ] ++ lib.optionals stdenv.isDarwin [ Carbon Cocoa Kernel UserNotifications ];

  ldflags = [
    "-s" "-w"
    "-s"
    "-w"
    "-linkmode=external"
  ];

@@ -51,6 +52,7 @@ buildGoModule rec {
  meta = with lib; {
    description = "Cast media files to UPnP/DLNA Media Renderers and Smart TVs";
    homepage = "https://github.com/alexballas/go2tv";
    changelog = "https://github.com/alexballas/go2tv/releases/tag/v${version}";
    license = licenses.mit;
    maintainers = with maintainers; [ gdamjan ];
    mainProgram = "go2tv";