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

View File

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