playball: init at 3.2.0 (#449374)
This commit is contained in:
@@ -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";
|
||||
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user