Merge pull request #332859 from 404Wolf/add-mailsy

This commit is contained in:
Sandro 2024-08-22 11:55:49 +02:00 committed by GitHub
commit 0c143150b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 42 additions and 0 deletions

View File

@ -212,6 +212,12 @@
githubId = 882455;
name = "Elliot Cameron";
};
_404wolf = {
email = "wolfmermelstein@gmail.com";
github = "404wolf";
githubId = 108041238;
name = "Wolf Mermelstein";
};
_414owen = {
email = "owen@owen.cafe";
github = "414owen";

View File

@ -0,0 +1,36 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "mailsy";
version = "5.0.0";
src = fetchFromGitHub {
owner = "BalliAsghar";
repo = "Mailsy";
rev = version;
hash = "sha256-RnOWvu023SOcN83xEEkYFwgDasOmkMwSzJ/QYjvTBDo=";
};
npmDepsHash = "sha256-ljmqNmLvRHPdsKyOdDfECBXHTIExM6nPZF45lqV+pDM=";
npmFlags = [ "--legacy-peer-deps" ];
dontNpmBuild = true;
postPatch = ''
substituteInPlace utils/index.js \
--replace-fail 'dirname, "../data/account.json"' 'process.cwd(), "account.json"' \
--replace-fail 'dirname, "../data/email.html"' 'process.cwd(), "email.html"'
'';
meta = {
description = "Quickly generate a disposable email straight from terminal";
mainProgram = "mailsy";
homepage = "https://fig.io/manual/mailsy";
license = lib.licenses.mit;
maintainers = [ lib.maintainers._404wolf ];
};
}