2ee12a93de
It's time again, I guess :> Main motivation is to stop being pinged about software that I maintained for work now that I'm about to switch jobs. There's no point in pinging me to review/test updates or to debug issues in e.g. the Atlassian stack or on mailman since I use neither personally. But there's also a bunch of other stuff that I stopped using personally. While at it I realized that I'm still maintainer of a few tests & modules related to packages I stopped maintaining in the past already.
33 lines
836 B
Nix
33 lines
836 B
Nix
{ lib
|
|
, buildNpmPackage
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "create-react-app";
|
|
version = "5.0.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "facebook";
|
|
repo = "create-react-app";
|
|
rev = "v${version}";
|
|
hash = "sha256-nUvJRxBZ98ogSkbw8ciFYtZRQNFD6pLThoEjeDMcGm0=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-diGu53lJi+Fs7pTAQGCXoDtP7YyKZLIN/2Wo+e1Mzc4=";
|
|
|
|
env.PUPPETEER_SKIP_DOWNLOAD = true;
|
|
|
|
npmWorkspace = "packages/create-react-app";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
changelog = "https://github.com/facebook/create-react-app/blob/${src.rev}/CHANGELOG.md";
|
|
description = "Create React apps with no build configuration";
|
|
homepage = "https://github.com/facebook/create-react-app";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "create-react-app";
|
|
maintainers = with lib.maintainers; [ ];
|
|
};
|
|
}
|