Add freepops.
svn path=/nixpkgs/trunk/; revision=27450
This commit is contained in:
parent
6cb018fe90
commit
ae548e8bcb
27
pkgs/servers/mail/freepops/default.nix
Normal file
27
pkgs/servers/mail/freepops/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{stdenv, fetchurl, pkgconfig, openssl, lua5, curl, readline, bison, expat}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "freepops-0.2.9";
|
||||||
|
src = fetchurl {
|
||||||
|
url = mirror://sf/freepops/0.2.9/freepops-0.2.9.tar.gz;
|
||||||
|
sha256 = "3a065e30cafed03d9b6fdb28251ae5bf0d8aeb62181746154beecd25dc0c9cae";
|
||||||
|
};
|
||||||
|
buildInputs = [pkgconfig openssl lua5 curl readline bison expat];
|
||||||
|
configurePhase =
|
||||||
|
''
|
||||||
|
export WHERE=$prefix/
|
||||||
|
export LOCALEDIR=$prefix/share/locale/
|
||||||
|
./configure.sh linux
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "FreePOPs is an extensible pop3 server.";
|
||||||
|
longDescription = ''
|
||||||
|
FreePOPs is an extensible pop3 server. Its main purpose is to provide
|
||||||
|
a pop3 interface to a webmail.
|
||||||
|
'';
|
||||||
|
homepage = http://www.freepops.org/;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers [ pierron ];
|
||||||
|
};
|
||||||
|
};
|
@ -4642,6 +4642,8 @@ let
|
|||||||
|
|
||||||
firebird = callPackage ../servers/firebird { };
|
firebird = callPackage ../servers/firebird { };
|
||||||
|
|
||||||
|
freepops = callPackage ../servers/mail/freepops { };
|
||||||
|
|
||||||
freeswitch = callPackage ../servers/sip/freeswitch { };
|
freeswitch = callPackage ../servers/sip/freeswitch { };
|
||||||
|
|
||||||
ghostOne = callPackage ../servers/games/ghost-one {
|
ghostOne = callPackage ../servers/games/ghost-one {
|
||||||
|
Loading…
Reference in New Issue
Block a user