Skip to content

Commit

Permalink
pdfarranger: don't wrap twice
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar committed Dec 6, 2020
1 parent 0b52dbe commit 01bb215
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkgs/applications/misc/pdfarranger/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ stdenv, fetchFromGitHub, lib
, wrapGAppsHook, intltool, qpdf
, wrapGAppsHook, intltool
, python3Packages, gtk3, poppler_gi
}:

Expand All @@ -22,7 +22,6 @@ python3Packages.buildPythonApplication rec {

buildInputs = [
gtk3 poppler_gi
qpdf
];

propagatedBuildInputs = with python3Packages; [
Expand All @@ -34,6 +33,10 @@ python3Packages.buildPythonApplication rec {

# incompatible with wrapGAppsHook
strictDeps = false;
dontWrapGApps = true;
preFixup = ''
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
'';

doCheck = false; # no tests

Expand Down

0 comments on commit 01bb215

Please sign in to comment.