summary refs log tree commit diff
path: root/pkgs/development/libraries/vrpn/default.nix
blob: d07c1d5504721cba0c901e01fbcf03db77dabca0 (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, unzip, cmake, mesa }:

stdenv.mkDerivation {
  name = "vrpn-07.30";

  src = fetchurl {
    url = "ftp://ftp.cs.unc.edu/pub/packages/GRIP/vrpn/vrpn_07_30.zip";
    sha256 = "1rysp08myv88q3a30dr7js7vg3hvq8zj2bjrpcgpp86fm3gjpvb4";
  };

  buildInputs = [ unzip cmake mesa ];

  doCheck = false;                                # FIXME: test failure
  checkTarget = "test";

  meta = {
    description = "Virtual Reality Peripheral Network";

    longDescription =
      '' The Virtual-Reality Peripheral Network (VRPN) is a set of classes
         within a library and a set of servers that are designed to implement
         a network-transparent interface between application programs and the
         set of physical devices (tracker, etc.) used in a virtual-reality
         (VR) system.
      '';

    homepage = http://www.cs.unc.edu/Research/vrpn/;

    license = stdenv.lib.licenses.boost;
                        # see # <http://www.cs.unc.edu/Research/vrpn/obtaining_vrpn.html>

  };
}