depot/pkgs/by-name/cr/create-react-app/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

33 lines
814 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 = [ ];
};
}