mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 16:03:23 +00:00
Add VRPN.
svn path=/nixpkgs/trunk/; revision=33640
This commit is contained in:
parent
cbded3238d
commit
725745c5b4
33
pkgs/development/libraries/vrpn/default.nix
Normal file
33
pkgs/development/libraries/vrpn/default.nix
Normal file
@ -0,0 +1,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 = "BSL1.0"; # Boost Software License,
|
||||
# see # <http://www.cs.unc.edu/Research/vrpn/obtaining_vrpn.html>
|
||||
|
||||
};
|
||||
}
|
@ -4770,6 +4770,8 @@ let
|
||||
|
||||
vmime = callPackage ../development/libraries/vmime { };
|
||||
|
||||
vrpn = callPackage ../development/libraries/vrpn { };
|
||||
|
||||
vtk = callPackage ../development/libraries/vtk { };
|
||||
|
||||
vxl = callPackage ../development/libraries/vxl {
|
||||
|
Loading…
Reference in New Issue
Block a user