Skip to content

Commit f58f1ec

Browse files
authored
nest-cli: 10.4.9 -> 11.0.7 (#407435)
2 parents 60ec847 + c89426d commit f58f1ec

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

pkgs/by-name/ne/nest-cli/package.nix

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,17 @@
77

88
buildNpmPackage rec {
99
pname = "nest-cli";
10-
version = "10.4.9";
10+
version = "11.0.7";
1111

1212
src = fetchFromGitHub {
1313
owner = "nestjs";
1414
repo = "nest-cli";
15-
rev = version;
16-
hash = "sha256-dko+hOC3oZToNS+EOqmm+z7DLHfqqKDeQsH2sYxburU=";
15+
tag = version;
16+
hash = "sha256-CCNbkSu/ymSKdFVDKZezekVFXl6Ipg9Dp9+Tyd4D+cY=";
1717
};
1818

19-
npmDepsHash = "sha256-K4M6Jehy1854SuxDiaHQLlvhOecwInZZbOcgMqchiIM=";
19+
npmDepsHash = "sha256-R9uSOeoQJw061ZEJMe8aDYUaUC1QvHQ9nOyoQa+z+fY=";
20+
npmFlags = [ "--legacy-peer-deps" ];
2021

2122
env = {
2223
npm_config_build_from_source = true;
@@ -26,11 +27,15 @@ buildNpmPackage rec {
2627
python3
2728
];
2829

29-
meta = with lib; {
30-
description = "CLI tool for Nest applications";
30+
meta = {
3131
homepage = "https://nestjs.com";
32-
license = licenses.mit;
32+
description = "CLI tool for Nest applications";
33+
license = lib.licenses.mit;
34+
changelog = "https://github.com/nestjs/nest-cli/releases/tag/${version}";
3335
mainProgram = "nest";
34-
maintainers = [ maintainers.ehllie ];
36+
maintainers = with lib.maintainers; [
37+
ehllie
38+
phanirithvij
39+
];
3540
};
3641
}

0 commit comments

Comments
 (0)