mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-17 18:34:41 +00:00
vrpn: 07.30 -> 2016-08-27
This commit is contained in:
parent
bc7e4e390a
commit
4ff7facccc
|
@ -1,34 +1,34 @@
|
||||||
{ fetchurl, stdenv, unzip, cmake, mesa }:
|
{ stdenv, fetchFromGitHub, unzip, cmake, mesa }:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation rec {
|
||||||
name = "vrpn-07.30";
|
name = "${pname}-${date}";
|
||||||
|
pname = "vrpn";
|
||||||
|
date = "2016-08-27";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "ftp://ftp.cs.unc.edu/pub/packages/GRIP/vrpn/vrpn_07_30.zip";
|
owner = "vrpn";
|
||||||
sha256 = "1rysp08myv88q3a30dr7js7vg3hvq8zj2bjrpcgpp86fm3gjpvb4";
|
repo = "vrpn";
|
||||||
|
rev = "9fa0ab3676a43527301c9efd3637f80220eb9462";
|
||||||
|
sha256 = "032q295d68w34rk5q8nfqdd29s55n00bfik84y7xzkjrpspaprlh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unzip cmake mesa ];
|
buildInputs = [ unzip cmake mesa ];
|
||||||
|
|
||||||
doCheck = false; # FIXME: test failure
|
doCheck = false; # FIXME: test failure
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "Virtual Reality Peripheral Network";
|
description = "Virtual Reality Peripheral Network";
|
||||||
|
longDescription = ''
|
||||||
longDescription =
|
The Virtual-Reality Peripheral Network (VRPN) is a set of classes
|
||||||
'' The Virtual-Reality Peripheral Network (VRPN) is a set of classes
|
within a library and a set of servers that are designed to implement
|
||||||
within a library and a set of servers that are designed to implement
|
a network-transparent interface between application programs and the
|
||||||
a network-transparent interface between application programs and the
|
set of physical devices (tracker, etc.) used in a virtual-reality
|
||||||
set of physical devices (tracker, etc.) used in a virtual-reality
|
(VR) system.
|
||||||
(VR) system.
|
'';
|
||||||
'';
|
homepage = http://www.vrpn.org/;
|
||||||
|
license = licenses.boost; # see https://github.com/vrpn/vrpn/wiki/License
|
||||||
homepage = http://www.cs.unc.edu/Research/vrpn/;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ ludo ];
|
||||||
license = stdenv.lib.licenses.boost;
|
|
||||||
# see # <http://www.cs.unc.edu/Research/vrpn/obtaining_vrpn.html>
|
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue