f97ce0a9a8
with the help of deadnix & nil
37 lines
888 B
Nix
37 lines
888 B
Nix
{ lib
|
|
, bundlerApp
|
|
, ruby
|
|
, bundlerUpdateScript
|
|
, nixosTests
|
|
}:
|
|
|
|
bundlerApp {
|
|
inherit ruby;
|
|
|
|
pname = "schleuder";
|
|
|
|
gemdir = ./.;
|
|
|
|
exes = [
|
|
"schleuder"
|
|
"schleuder-api-daemon"
|
|
];
|
|
|
|
passthru.updateScript = bundlerUpdateScript "schleuder";
|
|
passthru.tests = {
|
|
inherit (nixosTests) schleuder;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Schleuder is an encrypting mailing list manager with remailing-capabilities";
|
|
longDescription = ''
|
|
Schleuder is a group's email-gateway: subscribers can exchange
|
|
encrypted emails among themselves, receive emails from
|
|
non-subscribers and send emails to non-subscribers via the list.
|
|
'';
|
|
homepage = "https://schleuder.org";
|
|
changelog = "https://0xacab.org/schleuder/schleuder/blob/main/CHANGELOG.md";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ hexa lheckemann ];
|
|
};
|
|
}
|