pdfarranger: don't wrap twice

This commit is contained in:
Doron Behar 2020-12-05 16:08:22 +02:00
parent 0b52dbe322
commit 01bb2154bb

View File

@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, lib { stdenv, fetchFromGitHub, lib
, wrapGAppsHook, intltool, qpdf , wrapGAppsHook, intltool
, python3Packages, gtk3, poppler_gi , python3Packages, gtk3, poppler_gi
}: }:
@ -22,7 +22,6 @@ python3Packages.buildPythonApplication rec {
buildInputs = [ buildInputs = [
gtk3 poppler_gi gtk3 poppler_gi
qpdf
]; ];
propagatedBuildInputs = with python3Packages; [ propagatedBuildInputs = with python3Packages; [
@ -34,6 +33,10 @@ python3Packages.buildPythonApplication rec {
# incompatible with wrapGAppsHook # incompatible with wrapGAppsHook
strictDeps = false; strictDeps = false;
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';
doCheck = false; # no tests doCheck = false; # no tests