From 725745c5b48647b925d38a66f2011ad7b2a9b09e Mon Sep 17 00:00:00 2001 From: Ludovic Courtès Date: Fri, 6 Apr 2012 08:32:50 +0000 Subject: Add VRPN. svn path=/nixpkgs/trunk/; revision=33640 --- pkgs/development/libraries/vrpn/default.nix | 33 +++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 pkgs/development/libraries/vrpn/default.nix (limited to 'pkgs/development/libraries/vrpn') diff --git a/pkgs/development/libraries/vrpn/default.nix b/pkgs/development/libraries/vrpn/default.nix new file mode 100644 index 00000000000..3544e984077 --- /dev/null +++ b/pkgs/development/libraries/vrpn/default.nix @@ -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 # + + }; +} -- cgit 1.4.1