mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
pdfarranger: don't wrap twice
This commit is contained in:
parent
0b52dbe322
commit
01bb2154bb
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user