qutebrowser: fix pdfjs

Pdfjs was downloaded in two derivations, where one is sufficient.

Also there was allegedly a typo in the download URL.
This commit is contained in:
Justin Humm 2018-12-21 14:08:30 +01:00
parent 195f8ac5ac
commit 0be7bfe1bf
No known key found for this signature in database
GPG Key ID: 5F24E3BD56617EB2
1 changed files with 7 additions and 13 deletions

View File

@ -10,20 +10,14 @@
assert withMediaPlayback -> gst_all_1 != null;
let
pdfjs = stdenv.mkDerivation rec {
name = "pdfjs-${version}";
pdfjs = let
version = "1.10.100";
src = fetchzip {
url = "https://github.com/mozilla/pdf.js/releases/download/${version}/${name}-dist.zip";
sha256 = "04df4cf6i6chnggfjn6m1z9vb89f01a0l9fj5rk21yr9iirq9rkq";
stripRoot = false;
};
buildCommand = ''
mkdir $out
cp -r $src $out
'';
in
fetchzip rec {
name = "pdfjs-${version}";
url = "https://github.com/mozilla/pdf.js/releases/download/v${version}/${name}-dist.zip";
sha256 = "04df4cf6i6chnggfjn6m1z9vb89f01a0l9fj5rk21yr9iirq9rkq";
stripRoot = false;
};
in python3Packages.buildPythonApplication rec {