depot/third_party/nixpkgs/pkgs/development/tools/redoc-cli/default.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

34 lines
794 B
Nix

{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "redoc-cli";
version = "0.13.21";
src = fetchFromGitHub {
owner = "Redocly";
repo = "redoc";
rev = "d3ac16f4774ae5b5f698b4e8f4c1d3f5a009d361";
hash = "sha256-LmNb+m1Ng/53SPUqrr/AmxNMiWsrMGCKow0DW/9t3Do=";
};
sourceRoot = "${src.name}/cli";
npmDepsHash = "sha256-XL4D7+hb0zOxAr/aRo2UOg4UOip3oewbffsnkFddmWw=";
postPatch = ''
ln -s npm-shrinkwrap.json package-lock.json
'';
dontNpmBuild = true;
meta = {
description = "OpenAPI/Swagger-generated API Reference Documentation";
homepage = "https://github.com/Redocly/redoc/tree/redoc-cli/cli";
license = lib.licenses.mit;
mainProgram = "redoc-cli";
maintainers = with lib.maintainers; [ veehaitch ];
};
}