We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3385e commit 80461b3Copy full SHA for 80461b3
derivations/pebble-tool/default.nix
@@ -5,6 +5,7 @@
5
fetchFromGitHub,
6
makeWrapper,
7
freetype,
8
+ nodejs,
9
python2Packages,
10
pyv8,
11
zlib,
@@ -42,6 +43,8 @@ python2Packages.buildPythonPackage {
42
43
44
nativeBuildInputs = [ makeWrapper ];
45
46
+ buildInputs = [ nodejs ];
47
+
48
propagatedBuildInputs =
49
builtins.attrValues pythonLibs
50
++ (with python2Packages; [
@@ -65,6 +68,7 @@ python2Packages.buildPythonPackage {
65
68
66
69
postFixup = ''
67
70
wrapProgram $out/bin/pebble \
71
+ --prefix PATH : ${lib.makeBinPath [ nodejs ]} \
72
--prefix LD_LIBRARY_PATH : ${rpath} \
73
--prefix DYLD_LIBRARY_PATH : ${rpath} \
74
--set PHONESIM_PATH ${pythonLibs.pypkjs}/bin/pypkjs
0 commit comments