uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
35
pkgs/development/libraries/vrpn/default.nix
Normal file
35
pkgs/development/libraries/vrpn/default.nix
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
{ lib, stdenv, fetchFromGitHub, unzip, cmake, libGLU, libGL }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${date}";
|
||||
pname = "vrpn";
|
||||
date = "2016-08-27";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vrpn";
|
||||
repo = "vrpn";
|
||||
rev = "9fa0ab3676a43527301c9efd3637f80220eb9462";
|
||||
sha256 = "032q295d68w34rk5q8nfqdd29s55n00bfik84y7xzkjrpspaprlh";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake unzip ];
|
||||
buildInputs = [ libGLU libGL ];
|
||||
|
||||
doCheck = false; # FIXME: test failure
|
||||
checkTarget = "test";
|
||||
|
||||
meta = with lib; {
|
||||
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 = "https://github.com/vrpn/vrpn";
|
||||
license = licenses.boost; # see https://github.com/vrpn/vrpn/wiki/License
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ludo ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue