11 stdenv.mkDerivation rec {
15 src = fetchFromGitHub {
18 rev = "refs/tags/${pname}-${version}";
19 hash = "sha256-5iAriIutBhwyZVS7AG2fnkrHOI7pNAKfYv062Cy0WXw=";
22 nativeBuildInputs = [ flex bison autoreconfHook pkg-config ];
24 buildInputs = [ libtirpc ];
26 configureFlags = [ "--disable-shared" ];
28 doCheck = false; # no test suite
31 description = "User-space NFSv3 file system server";
34 UNFS3 is a user-space implementation of the NFSv3 server
35 specification. It provides a daemon for the MOUNT and NFS
36 protocols, which are used by NFS clients for accessing files on the
40 # The old http://unfs3.sourceforge.net/ has a <meta>
41 # http-equiv="refresh" pointing here, so we can assume that
42 # whoever controls the old URL approves of the "unfs3" github
44 homepage = "https://unfs3.github.io/";
45 changelog = "https://raw.githubusercontent.com/unfs3/unfs3/unfs3-${version}/NEWS";
46 mainProgram = "unfsd";
48 license = lib.licenses.bsd3;
49 platforms = lib.platforms.unix;