playball: init at 3.2.0 (#449374)

This commit is contained in:
Aleksana
2025-12-17 12:00:30 +00:00
committed by GitHub
2 changed files with 36 additions and 0 deletions
+6
View File
@@ -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
View File
@@ -0,0 +1,30 @@
{
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 ];
};
}