more janus

This commit is contained in:
Daniel Løvbrøtte Olsen 2019-11-20 15:29:38 +01:00
parent 690e88f60c
commit f2d588fff4
1 changed files with 17 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, bullet, libopus, qt5, mesa_glu, vlc }: { stdenv, fetchFromGitHub, bullet, libopus, qt5, mesa_glu, vlc, openal, assimp, pkgconfig, tree }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "janus"; pname = "janus";
@ -12,6 +12,7 @@ stdenv.mkDerivation {
}; };
buildInputs = [ buildInputs = [
tree
mesa_glu mesa_glu
vlc vlc
qt5.qmake qt5.qmake
@ -20,14 +21,26 @@ stdenv.mkDerivation {
qt5.qtscript qt5.qtscript
bullet bullet
libopus libopus
openal
assimp
]; ];
# installPhase = '' nativeBuildInputs = [
# ''; pkgconfig
];
preConfigure = ''
export NIX_CFLAGS_COMPILE="$NIX_CFLAGS_COMPILE -I${bullet}/include/bullet"
'';
BuildPhase = ''
tree .
'';
meta = { meta = {
description = "VR Social app like the web"; description = "VR Social app like the web";
broken = true; broken = false;
}; };
} }