hylafaxplus: update meta

* move meta attrset into curly brackets
* update homepage (finally supports https)
* add downloadPage
* add longDescription
This commit is contained in:
Yarny0 2019-04-06 19:04:44 +02:00
parent e57156bcaa
commit 729ce1cc58

View file

@ -87,9 +87,28 @@ stdenv.mkDerivation {
dontAddPrefix = true;
postInstall = ''. ${postInstall}'';
postInstallCheck = ''. ${./post-install-check.sh}'';
meta.description = "enterprise-class system for sending and receiving facsimiles";
meta.homepage = http://hylafax.sourceforge.net;
meta.license = lib.licenses.bsd3;
meta.maintainers = [ lib.maintainers.yarny ];
meta.platforms = lib.platforms.linux;
meta = {
description = "enterprise-class system for sending and receiving facsimiles";
downloadPage = https://hylafax.sourceforge.io/download.php;
homepage = https://hylafax.sourceforge.io;
license = lib.licenses.bsd3;
maintainers = [ lib.maintainers.yarny ];
platforms = lib.platforms.linux;
longDescription = ''
HylaFAX is a scalable and time-proven solution
for sending and receiving facsimiles via modem(s).
It is based on a client-server architecture,
loosely comparable to CUPS:
A client connects to a server to issue outbound jobs,
the server then chooses a modem to
connect to the receiving fax machine.
The server notifies users about their
outbound jobs as well as about inbound jobs.
HylaFAX+ is a fork of HylaFAX that -- in general --
contains a superset of the features of
HylaFAX and produces releases more often.
This package contains the client
and the server parts of HylaFAX+.
'';
};
}