ejs: 3.1.9 -> 3.1.10

- Removed \`rec\`
- Removed \`with lib;\`
- Added momeemt to maintainers
- Formatted via nixfmt-rfc-style
This commit is contained in:
Mutsuha Asada 2024-09-23 13:57:43 +09:00
parent e2c10d9057
commit 7a3290b85e
No known key found for this signature in database
GPG Key ID: ACB54F0CBC6AA7C6
2 changed files with 11 additions and 10 deletions

View File

@ -1,17 +1,20 @@
{ lib
, buildNpmPackage
, fetchFromGitHub
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
let
version = "3.1.10";
in
buildNpmPackage {
pname = "ejs";
version = "3.1.9";
inherit version;
src = fetchFromGitHub {
owner = "mde";
repo = "ejs";
rev = "v${version}";
hash = "sha256-bOZclhsnV3onxc32ZGfLpuGS5Jz6S12/BmkmwL4M6Dg=";
hash = "sha256-3Rq+7oiYJlIY7sGPasx728sz2zj0ndAvKpHGsQX4tlc=";
};
npmDepsHash = "sha256-829eWfJiMw9KRlhdmzD0ha//bgUQ5nPEzO+ayUPLxXY=";
@ -29,6 +32,6 @@ buildNpmPackage rec {
homepage = "http://ejs.co";
license = lib.licenses.asl20;
mainProgram = "ejs";
maintainers = [ ];
maintainers = with lib.maintainers; [ momeemt ];
};
}

View File

@ -1674,8 +1674,6 @@ 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 { };