1 { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
10 rev = "libnfs-${version}";
11 sha256 = "sha256-rdxi5bPXHTICZQIj/CmHgZ/V70svnITJj/OSF4mmC3o=";
14 nativeBuildInputs = [ autoreconfHook ];
17 # Fixes 100% CPU usage in multi-threaded mode
19 url = "https://github.com/sahlberg/libnfs/commit/34d6fe37e986da5b0ced86cd028a88e482537d5a.patch";
20 sha256 = "sha256-i7mi+TVdkLb4MztT5Ic/Q8XBIWk9lo8v5bNjHOr6LaI=";
22 # Fixes deprecation warnings on macOS
24 url = "https://github.com/sahlberg/libnfs/commit/f6631c54a7b0385988f11357bf96728a6d7345b9.patch";
25 sha256 = "sha256-xLRZ9J1vr04n//gNv9ljUBt5LHUGBRRVIXJCMlFbHFI=";
33 enableParallelBuilding = true;
36 description = "NFS client library";
37 homepage = "https://github.com/sahlberg/libnfs";
38 license = with licenses; [ lgpl2 bsd2 gpl3 ];
39 maintainers = with maintainers; [ peterhoeg ];
40 platforms = platforms.unix;