summary refs log tree commit diff
path: root/pkgs/servers/unfs3/default.nix
blob: 4304dc229e35a596e25d2a11e6547f4bc5152eea (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{ fetchurl, stdenv, flex, bison }:

stdenv.mkDerivation rec {
  name = "unfs3-0.9.22";

  src = fetchurl {
    url = "mirror://sourceforge/unfs3/${name}.tar.gz";
    sha256 = "076zkyqkn56q0a8n3h65n1a68fknk4hrrp6mbhajq5s1wp5248j8";
  };

  nativeBuildInputs = [ flex bison ];

  configureFlags = [ "--disable-shared" ];

  doCheck = false;                                # no test suite

  meta = {
    description = "User-space NFSv3 file system server";

    longDescription =
      '' UNFS3 is a user-space implementation of the NFSv3 server
         specification.  It provides a daemon for the MOUNT and NFS
         protocols, which are used by NFS clients for accessing files on the
         server.
      '';

    homepage = http://unfs3.sourceforge.net/;

    license = stdenv.lib.licenses.bsd3;
    platforms = stdenv.lib.platforms.unix;
    maintainers = [ ];
  };
}