19 lines
326 B
Nix
19 lines
326 B
Nix
{
|
|
buildApp,
|
|
callPackage,
|
|
nix-update,
|
|
nodejs_latest,
|
|
prefetch-npm-deps,
|
|
...
|
|
}:
|
|
buildApp {
|
|
src = ./.;
|
|
npmDepsHash = "sha256-vIhR/+Pgj35sv/ZX1iL+xWheu6w7vQeJy4OEfa8tXFw=";
|
|
|
|
runtimeInputs = [
|
|
nix-update
|
|
nodejs_latest
|
|
prefetch-npm-deps
|
|
(callPackage ../../modules/docker/updateImage.nix {})
|
|
];
|
|
}
|