playball: init at 3.2.0

This commit is contained in:
Nick DeGroot
2025-11-21 10:11:07 -08:00
parent c7aa2bdd7f
commit 1803ac17ae
+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 ];
};
}