mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
95 lines
1.5 KiB
Nix
95 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
cmake,
|
|
pkg-config,
|
|
sphinx,
|
|
krb5,
|
|
xfsprogs,
|
|
jemalloc,
|
|
dbus,
|
|
libcap,
|
|
ntirpc,
|
|
liburcu,
|
|
bison,
|
|
flex,
|
|
nfs-utils,
|
|
acl,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nfs-ganesha";
|
|
version = "6.2";
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
"tools"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nfs-ganesha";
|
|
repo = "nfs-ganesha";
|
|
rev = "V${version}";
|
|
hash = "sha256-wWN9E6QxipTh5ppEyEbhqG0uSVjd+DzWgY/oj5FIso0=";
|
|
};
|
|
|
|
preConfigure = "cd src";
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_SYSTEM_NTIRPC=ON"
|
|
"-DSYSSTATEDIR=/var"
|
|
"-DENABLE_VFS_POSIX_ACL=ON"
|
|
"-DUSE_ACL_MAPPING=ON"
|
|
"-DCMAKE_BUILD_WITH_INSTALL_RPATH=ON"
|
|
"-DUSE_MAN_PAGE=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
bison
|
|
flex
|
|
sphinx
|
|
];
|
|
|
|
buildInputs = [
|
|
acl
|
|
krb5
|
|
xfsprogs
|
|
jemalloc
|
|
dbus.lib
|
|
libcap
|
|
ntirpc
|
|
liburcu
|
|
nfs-utils
|
|
];
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/tools/mount.9P --replace "/bin/mount" "/usr/bin/env mount"
|
|
'';
|
|
|
|
postFixup = ''
|
|
patchelf --add-rpath $out/lib $out/bin/ganesha.nfsd
|
|
'';
|
|
|
|
postInstall = ''
|
|
install -Dm755 $src/src/tools/mount.9P $tools/bin/mount.9P
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "NFS server that runs in user space";
|
|
homepage = "https://github.com/nfs-ganesha/nfs-ganesha/wiki";
|
|
maintainers = [ maintainers.markuskowa ];
|
|
platforms = platforms.linux;
|
|
license = licenses.lgpl3Plus;
|
|
mainProgram = "ganesha.nfsd";
|
|
outputsToInstall = [
|
|
"out"
|
|
"man"
|
|
"tools"
|
|
];
|
|
};
|
|
}
|