mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 20:34:52 +03:00
pdfarranger: don't wrap twice
This commit is contained in:
parent
0b52dbe322
commit
01bb2154bb
@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchFromGitHub, lib
|
||||
, wrapGAppsHook, intltool, qpdf
|
||||
, wrapGAppsHook, intltool
|
||||
, python3Packages, gtk3, poppler_gi
|
||||
}:
|
||||
|
||||
@ -22,7 +22,6 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
buildInputs = [
|
||||
gtk3 poppler_gi
|
||||
qpdf
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [
|
||||
@ -34,6 +33,10 @@ python3Packages.buildPythonApplication rec {
|
||||
|
||||
# incompatible with wrapGAppsHook
|
||||
strictDeps = false;
|
||||
dontWrapGApps = true;
|
||||
preFixup = ''
|
||||
makeWrapperArgs+=("''${gappsWrapperArgs[@]}")
|
||||
'';
|
||||
|
||||
doCheck = false; # no tests
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user