mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 18:26:45 +01:00
18 lines
484 B
Nix
18 lines
484 B
Nix
{ lib, bundlerApp, bundlerUpdateScript }:
|
|
|
|
bundlerApp {
|
|
pname = "mailcatcher";
|
|
gemdir = ./.;
|
|
exes = [ "mailcatcher" "catchmail" ];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "mailcatcher";
|
|
|
|
meta = with lib; {
|
|
description = "SMTP server and web interface to locally test outbound emails";
|
|
homepage = "https://mailcatcher.me/";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zarelit nicknovitski ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|