mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
37 lines
899 B
Nix
37 lines
899 B
Nix
{
|
|
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 ];
|
|
};
|
|
}
|