mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
49 lines
959 B
Nix
49 lines
959 B
Nix
|
{ stdenv, fetchFromGitHub, cmake, pkg-config
|
||
|
, krb5, xfsprogs, jemalloc, dbus, libcap
|
||
|
, ntirpc, liburcu, bison, flex, nfs-utils
|
||
|
} :
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
pname = "nfs-ganesha";
|
||
|
version = "3.3";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "nfs-ganesha";
|
||
|
repo = "nfs-ganesha";
|
||
|
rev = "V${version}";
|
||
|
sha256 = "1w48rqrbqah0hnirvjdz8lyr9ah8b73j3cgsppb04gnrmpssgmb6";
|
||
|
};
|
||
|
|
||
|
patches = [ ./sysstatedir.patch ];
|
||
|
|
||
|
preConfigure = "cd src";
|
||
|
|
||
|
cmakeFlags = [ "-DUSE_SYSTEM_NTIRPC=ON" ];
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
cmake
|
||
|
pkg-config
|
||
|
bison
|
||
|
flex
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
krb5
|
||
|
xfsprogs
|
||
|
jemalloc
|
||
|
dbus.lib
|
||
|
libcap
|
||
|
ntirpc
|
||
|
liburcu
|
||
|
nfs-utils
|
||
|
];
|
||
|
|
||
|
meta = with stdenv.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;
|
||
|
};
|
||
|
}
|