Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
704 B
Nix
Raw Permalink Normal View History

2024-06-28 18:28:35 -04:00
{
lib,
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
}:
buildNpmPackage rec {
pname = "nodemon";
2025-04-26 19:20:17 +00:00
version = "3.1.10";
2024-06-28 18:28:35 -04:00
src = fetchFromGitHub {
owner = "remy";
repo = "nodemon";
rev = "v${version}";
2025-04-26 19:20:17 +00:00
hash = "sha256-wr/HNa+iqHhlE/Qp62d1EgcwA6hsv8CsJg9NLgEa15g=";
2024-06-28 18:28:35 -04:00
};
npmDepsHash = "sha256-cZHfaUWhKZYKRe4Foc2UymZ8hTPrGLzlcXe1gMsW1pU=";
dontNpmBuild = true;
passthru.updateScript = nix-update-script { };
meta = {
2024-11-27 13:57:04 +01:00
description = "Simple monitor script for use during development of a Node.js app";
mainProgram = "nodemon";
homepage = "https://nodemon.io";
2024-06-28 18:28:35 -04:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ pyrox0 ];
};
}