youtube-dl: without pandoc on non-pc
This commit is contained in:
parent
ed4f1c947f
commit
0e57e74e6f
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ stdenv.mkDerivation {
|
|||
};
|
||||
|
||||
buildInputs = [ python ];
|
||||
nativeBuildInputs = [ pandoc zip ];
|
||||
nativeBuildInputs = [ zip ] ++
|
||||
stdenv.lib.optional (stdenv.isi686 || stdenv.isx86_64) pandoc;
|
||||
|
||||
patchPhase = ''
|
||||
rm youtube-dl
|
||||
|
|
Loading…
Reference in a new issue