Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
42 lines
826 B
Nix
42 lines
826 B
Nix
{
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
lib,
|
|
python3,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "nest-cli";
|
|
version = "11.0.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nestjs";
|
|
repo = "nest-cli";
|
|
tag = version;
|
|
hash = "sha256-mNnEbZv6LG5YDYZj7kAiPcg2Se9wJidON+9Tp/TIpd4=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-dEg0WmNNNLMQj+9bHkwf0uz9Vyx+QFSHrQv7fk1DxjQ=";
|
|
npmFlags = [ "--legacy-peer-deps" ];
|
|
|
|
env = {
|
|
npm_config_build_from_source = true;
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
python3
|
|
];
|
|
|
|
meta = {
|
|
homepage = "https://nestjs.com";
|
|
description = "CLI tool for Nest applications";
|
|
license = lib.licenses.mit;
|
|
changelog = "https://github.com/nestjs/nest-cli/releases/tag/${version}";
|
|
mainProgram = "nest";
|
|
maintainers = with lib.maintainers; [
|
|
ehllie
|
|
phanirithvij
|
|
];
|
|
};
|
|
}
|