2017-11-09 04:52:23 +00:00
|
|
|
{ fetchurl, stdenv, autoreconfHook, pkgconfig, perl, python
|
|
|
|
, db, libgcrypt, avahi, libiconv, pam, openssl, acl
|
2019-09-13 17:02:18 +00:00
|
|
|
, ed, glibc, libevent
|
2017-11-09 04:52:23 +00:00
|
|
|
}:
|
2013-09-16 05:54:57 +00:00
|
|
|
|
2015-08-14 05:05:03 +00:00
|
|
|
stdenv.mkDerivation rec{
|
2018-12-25 13:46:49 +00:00
|
|
|
name = "netatalk-3.1.12";
|
2013-09-16 05:54:57 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/netatalk/netatalk/${name}.tar.bz2";
|
2018-12-25 13:46:49 +00:00
|
|
|
sha256 = "1ld5mnz88ixic21m6f0xcgf8v6qm08j6xabh1dzfj6x47lxghq0m";
|
2013-09-16 05:54:57 +00:00
|
|
|
};
|
|
|
|
|
2017-11-09 04:52:23 +00:00
|
|
|
patches = [
|
|
|
|
./no-suid.patch
|
|
|
|
./omitLocalstatedirCreation.patch
|
|
|
|
];
|
2015-08-14 05:05:03 +00:00
|
|
|
|
2017-11-09 04:52:23 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig perl python python.pkgs.wrapPython ];
|
|
|
|
|
2019-09-13 17:02:18 +00:00
|
|
|
buildInputs = [ db libgcrypt avahi libiconv pam openssl acl libevent ];
|
2013-09-16 05:54:57 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-05-22 13:47:28 +00:00
|
|
|
"--with-bdb=${db.dev}"
|
2017-11-09 04:52:23 +00:00
|
|
|
"--with-ssl-dir=${openssl.dev}"
|
2015-08-14 05:05:03 +00:00
|
|
|
"--with-lockfile=/run/lock/netatalk"
|
2019-09-13 17:02:18 +00:00
|
|
|
"--with-libevent=${libevent.dev}"
|
2015-08-14 05:05:03 +00:00
|
|
|
"--localstatedir=/var/lib"
|
2013-09-16 05:54:57 +00:00
|
|
|
];
|
|
|
|
|
2016-09-02 18:38:03 +00:00
|
|
|
# Expose librpcsvc to the linker for afpd
|
|
|
|
# Fixes errors that showed up when closure-size was merged:
|
|
|
|
# afpd-nfsquota.o: In function `callaurpc':
|
|
|
|
# netatalk-3.1.7/etc/afpd/nfsquota.c:78: undefined reference to `xdr_getquota_args'
|
|
|
|
# netatalk-3.1.7/etc/afpd/nfsquota.c:78: undefined reference to `xdr_getquota_rslt'
|
|
|
|
postConfigure = ''
|
|
|
|
${ed}/bin/ed -v etc/afpd/Makefile << EOF
|
|
|
|
/^afpd_LDADD
|
|
|
|
/am__append_2
|
|
|
|
a
|
|
|
|
${glibc.static}/lib/librpcsvc.a \\
|
|
|
|
.
|
|
|
|
w
|
|
|
|
EOF
|
|
|
|
'';
|
|
|
|
|
2017-11-09 04:52:23 +00:00
|
|
|
postInstall = ''
|
|
|
|
buildPythonPath ${python.pkgs.dbus-python}
|
|
|
|
patchPythonScript $out/bin/afpstats
|
|
|
|
'';
|
|
|
|
|
2016-09-01 08:46:11 +00:00
|
|
|
enableParallelBuilding = true;
|
2013-09-16 05:54:57 +00:00
|
|
|
|
|
|
|
meta = {
|
2015-08-14 05:05:03 +00:00
|
|
|
description = "Apple Filing Protocol Server";
|
2013-09-16 05:54:57 +00:00
|
|
|
homepage = http://netatalk.sourceforge.net/;
|
|
|
|
license = stdenv.lib.licenses.gpl3;
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ jcumming ];
|
|
|
|
};
|
|
|
|
}
|