mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
52 lines
1,021 B
Nix
52 lines
1,021 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, pkg-config
|
|
, krb5, xfsprogs, jemalloc, dbus, libcap
|
|
, ntirpc, liburcu, bison, flex, nfs-utils, acl
|
|
} :
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "nfs-ganesha";
|
|
version = "5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nfs-ganesha";
|
|
repo = "nfs-ganesha";
|
|
rev = "V${version}";
|
|
sha256 = "sha256-yB8DyEWZVcdPMIVpTl687S1WuyBqAt7hszqVrJ9Kraw=";
|
|
};
|
|
|
|
preConfigure = "cd src";
|
|
|
|
cmakeFlags = [
|
|
"-DUSE_SYSTEM_NTIRPC=ON"
|
|
"-DSYSSTATEDIR=/var"
|
|
"-DENABLE_VFS_POSIX_ACL=ON"
|
|
"-DUSE_ACL_MAPPING=ON"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
pkg-config
|
|
bison
|
|
flex
|
|
];
|
|
|
|
buildInputs = [
|
|
acl
|
|
krb5
|
|
xfsprogs
|
|
jemalloc
|
|
dbus.lib
|
|
libcap
|
|
ntirpc
|
|
liburcu
|
|
nfs-utils
|
|
];
|
|
|
|
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;
|
|
};
|
|
}
|