9 stdenv.mkDerivation rec {
13 src = fetchFromGitHub {
16 rev = "libnfs-${version}";
17 sha256 = "sha256-rdxi5bPXHTICZQIj/CmHgZ/V70svnITJj/OSF4mmC3o=";
20 nativeBuildInputs = [ autoreconfHook ];
23 # Fixes 100% CPU usage in multi-threaded mode
25 url = "https://github.com/sahlberg/libnfs/commit/34d6fe37e986da5b0ced86cd028a88e482537d5a.patch";
26 sha256 = "sha256-i7mi+TVdkLb4MztT5Ic/Q8XBIWk9lo8v5bNjHOr6LaI=";
28 # Fixes deprecation warnings on macOS
30 url = "https://github.com/sahlberg/libnfs/commit/f6631c54a7b0385988f11357bf96728a6d7345b9.patch";
31 sha256 = "sha256-xLRZ9J1vr04n//gNv9ljUBt5LHUGBRRVIXJCMlFbHFI=";
39 enableParallelBuilding = true;
42 description = "NFS client library";
43 homepage = "https://github.com/sahlberg/libnfs";
44 license = with licenses; [
49 maintainers = with maintainers; [ peterhoeg ];
50 platforms = platforms.unix;