mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
Merge pull request #59081 from Yarny0/hylafax-updates
HylaFAX: fix ModemGroup, also minor metadata updates
This commit is contained in:
commit
92ae299998
3 changed files with 27 additions and 6 deletions
|
@ -26,4 +26,6 @@
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
meta.maintainers = [ lib.maintainers.yarny ];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
ModemGroup = [ ''"any:.*"'' ];
|
ModemGroup = [ ''"any:0:.*"'' ];
|
||||||
ServerTracing = "0x78701";
|
ServerTracing = "0x78701";
|
||||||
SessionTracing = "0x78701";
|
SessionTracing = "0x78701";
|
||||||
UUCPLockDir = "/var/lock";
|
UUCPLockDir = "/var/lock";
|
||||||
|
|
|
@ -87,9 +87,28 @@ stdenv.mkDerivation {
|
||||||
dontAddPrefix = true;
|
dontAddPrefix = true;
|
||||||
postInstall = ''. ${postInstall}'';
|
postInstall = ''. ${postInstall}'';
|
||||||
postInstallCheck = ''. ${./post-install-check.sh}'';
|
postInstallCheck = ''. ${./post-install-check.sh}'';
|
||||||
meta.description = "enterprise-class system for sending and receiving facsimiles";
|
meta = {
|
||||||
meta.homepage = http://hylafax.sourceforge.net;
|
description = "enterprise-class system for sending and receiving facsimiles";
|
||||||
meta.license = lib.licenses.bsd3;
|
downloadPage = https://hylafax.sourceforge.io/download.php;
|
||||||
meta.maintainers = [ lib.maintainers.yarny ];
|
homepage = https://hylafax.sourceforge.io;
|
||||||
meta.platforms = lib.platforms.linux;
|
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+.
|
||||||
|
'';
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue