mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 03:12:51 +00:00
74 lines
1.3 KiB
Nix
74 lines
1.3 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchurl
|
|
, acl
|
|
, autoreconfHook
|
|
, avahi
|
|
, db
|
|
, libevent
|
|
, libgcrypt
|
|
, libiconv
|
|
, openssl
|
|
, pam
|
|
, perl
|
|
, pkg-config
|
|
, python3
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "netatalk";
|
|
version = "3.1.18";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/netatalk/netatalk/netatalk-${finalAttrs.version}.tar.bz2";
|
|
hash = "sha256-htIJ3Hd2pLoXhFFk0uN2pGnO43aiexiuMYmOP0ukFlU=";
|
|
};
|
|
|
|
patches = [
|
|
./000-no-suid.patch
|
|
./001-omit-localstatedir-creation.patch
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
perl
|
|
python3
|
|
python3.pkgs.wrapPython
|
|
];
|
|
|
|
buildInputs = [
|
|
acl
|
|
avahi
|
|
db
|
|
libevent
|
|
libgcrypt
|
|
libiconv
|
|
openssl
|
|
pam
|
|
];
|
|
|
|
configureFlags = [
|
|
"--with-bdb=${db.dev}"
|
|
"--with-ssl-dir=${openssl.dev}"
|
|
"--with-lockfile=/run/lock/netatalk"
|
|
"--localstatedir=/var/lib"
|
|
];
|
|
|
|
postInstall = ''
|
|
sed -i -e "s%/usr/bin/env python%${python3}/bin/python3%" $out/bin/afpstats
|
|
buildPythonPath ${python3.pkgs.dbus-python}
|
|
patchPythonScript $out/bin/afpstats
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "Apple Filing Protocol Server";
|
|
homepage = "http://netatalk.sourceforge.net/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ jcumming ];
|
|
};
|
|
})
|