ejs: init at 3.1.9

This commit is contained in:
P. R. d. O 2023-09-05 17:28:51 -06:00
parent e39a92683b
commit 846fcf2cd0
No known key found for this signature in database
GPG Key ID: 7B0FF33FF90110C7
2 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
}:
buildNpmPackage rec {
pname = "ejs";
version = "3.1.9";
src = fetchFromGitHub {
owner = "mde";
repo = "ejs";
rev = "v${version}";
hash = "sha256-bOZclhsnV3onxc32ZGfLpuGS5Jz6S12/BmkmwL4M6Dg=";
};
npmDepsHash = "sha256-829eWfJiMw9KRlhdmzD0ha//bgUQ5nPEzO+ayUPLxXY=";
buildPhase = ''
runHook preBuild
./node_modules/.bin/jake build
runHook postBuild
'';
meta = {
description = "Embedded JavaScript templates";
homepage = "http://ejs.co";
license = lib.licenses.asl20;
mainProgram = "ejs";
maintainers = with lib.maintainers; [ wolfangaukang ];
};
}

View File

@ -1711,6 +1711,8 @@ with pkgs;
crypto-tracker = callPackage ../tools/misc/crypto-tracker { };
ejs = callPackage ../development/tools/ejs { };
ejson2env = callPackage ../tools/admin/ejson2env { };
davinci-resolve = callPackage ../applications/video/davinci-resolve { };