Merge pull request #231702 from chuangzhu/webtorrent-mpv-hook
This commit is contained in:
commit
920fbd7fea
1 changed files with 5 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
{ lib , buildNpmPackage , fetchFromGitHub, nodejs }:
|
||||
{ lib, buildNpmPackage, fetchFromGitHub, nodejs, python3 }:
|
||||
|
||||
buildNpmPackage rec {
|
||||
pname = "webtorrent-mpv-hook";
|
||||
|
@ -21,6 +21,10 @@ buildNpmPackage rec {
|
|||
npmDepsHash = "sha256-GpNUJ5ZCgMjSYLqsIE/RwkTSFT3uAhxrHPe7XvGDRHE=";
|
||||
makeCacheWritable = true;
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3 # Fixes node-gyp on aarch64-linux
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p $out/share/mpv/scripts/
|
||||
ln -s $out/lib/node_modules/webtorrent-mpv-hook/build/webtorrent.js $out/share/mpv/scripts/
|
||||
|
|
Loading…
Reference in a new issue