Unverified Commit 5c68707e authored by Aleksana's avatar Aleksana Committed by GitHub
Browse files

playball: init at 3.2.0 (#449374)

parents 579cc4d5 1803ac17
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -18649,6 +18649,12 @@
    githubId = 151337;
    name = "Nick Novitski";
  };
  nickthegroot = {
    name = "Nick DeGroot";
    email = "nick@nickthegroot.com";
    github = "nickthegroot";
    githubId = 1966472;
  };
  nico202 = {
    email = "anothersms@gmail.com";
    github = "nico202";
+30 −0
Original line number Diff line number Diff line
{
  lib,
  buildNpmPackage,
  fetchFromGitHub,
}:

buildNpmPackage rec {
  pname = "playball";
  version = "3.2.0";

  src = fetchFromGitHub {
    owner = "paaatrick";
    repo = "playball";
    tag = "v${version}";
    hash = "sha256-xgAhzNWCLNmbrwaYAGmXMercoRgXWPjjV5dcnXunmeA=";
  };

  npmDepsHash = "sha256-s0JKBJnVYkeXOE62F6BZRKwd0Hg3IOuMai6rmKUi6TI=";

  env.ELECTRON_SKIP_BINARY_DOWNLOAD = "1";

  meta = {
    changelog = "https://github.com/paaatrick/playball/releases/tag/v${version}";
    description = "Watch MLB games from the comfort of your own terminal";
    mainProgram = "playball";
    homepage = "https://github.com/paaatrick/playball";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ nickthegroot ];
  };
}