Merge pull request #68692 from mayflower/netatalk
netatalk: use system netatalk
This commit is contained in:
commit
761b3a0640
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ fetchurl, stdenv, autoreconfHook, pkgconfig, perl, python
|
{ fetchurl, stdenv, autoreconfHook, pkgconfig, perl, python
|
||||||
, db, libgcrypt, avahi, libiconv, pam, openssl, acl
|
, db, libgcrypt, avahi, libiconv, pam, openssl, acl
|
||||||
, ed, glibc
|
, ed, glibc, libevent
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec{
|
stdenv.mkDerivation rec{
|
||||||
|
@ -18,12 +18,13 @@ stdenv.mkDerivation rec{
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook pkgconfig perl python python.pkgs.wrapPython ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig perl python python.pkgs.wrapPython ];
|
||||||
|
|
||||||
buildInputs = [ db libgcrypt avahi libiconv pam openssl acl ];
|
buildInputs = [ db libgcrypt avahi libiconv pam openssl acl libevent ];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--with-bdb=${db.dev}"
|
"--with-bdb=${db.dev}"
|
||||||
"--with-ssl-dir=${openssl.dev}"
|
"--with-ssl-dir=${openssl.dev}"
|
||||||
"--with-lockfile=/run/lock/netatalk"
|
"--with-lockfile=/run/lock/netatalk"
|
||||||
|
"--with-libevent=${libevent.dev}"
|
||||||
"--localstatedir=/var/lib"
|
"--localstatedir=/var/lib"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue