inkcut: use 'lpr' from closure

wip/nixpkgs-raku
Arnout Engelen 3 years ago
parent b59c06dc92
commit a6b9ef6aa8
No known key found for this signature in database
GPG Key ID: 061107B0F74A6DAA
  1. 6
      pkgs/applications/misc/inkcut/default.nix

@ -2,6 +2,7 @@
, python3Packages
, fetchFromGitHub
, wrapQtAppsHook
, cups
}:
with python3Packages;
@ -17,6 +18,11 @@ buildPythonApplication rec {
sha256 = "0px0xdv6kyzkkpmvryrdfavv1qy2xrqdxkpmhvx1gj649xcabv32";
};
postPatch = ''
substituteInPlace inkcut/device/transports/printer/plugin.py \
--replace ", 'lpr', " ", '${cups}/bin/lpr', "
'';
nativeBuildInputs = [ wrapQtAppsHook ];
propagatedBuildInputs = [

Loading…
Cancel
Save