about summary refs log tree commit diff
path: root/pkgs/applications/office/paperwork
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-03-24 01:30:46 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2024-01-30 19:56:57 +0100
commit653837881ed2a27a12c7bf662be4abe9db9b7cc5 (patch)
treeb9423fa35443b64d1ed1f1c511c049f42f746d2b /pkgs/applications/office/paperwork
parent30b34ac00788d0dce98a992b6d92779b9eb6bc19 (diff)
downloadnixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar.gz
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar.bz2
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar.lz
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar.xz
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.tar.zst
nixlib-653837881ed2a27a12c7bf662be4abe9db9b7cc5.zip
treewide: replace `lib/${python.libPrefix}/site-packages` with its shorthand `${python.sitePackages}`
which should be always preferred
Diffstat (limited to 'pkgs/applications/office/paperwork')
-rw-r--r--pkgs/applications/office/paperwork/paperwork-gtk.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/office/paperwork/paperwork-gtk.nix b/pkgs/applications/office/paperwork/paperwork-gtk.nix
index e21379678a17..e783e8f4966f 100644
--- a/pkgs/applications/office/paperwork/paperwork-gtk.nix
+++ b/pkgs/applications/office/paperwork/paperwork-gtk.nix
@@ -64,7 +64,7 @@ python3Packages.buildPythonApplication rec {
     # fixes [WARNING] [openpaperwork_core.resources.setuptools] Failed to find
     # resource file paperwork_gtk.icon.out/paperwork_128.png, tried at path
     # /nix/store/3n5lz6y8k9yks76f0nar3smc8djan3xr-paperwork-2.0.2/lib/python3.8/site-packages/paperwork_gtk/icon/out/paperwork_128.png.
-    site=$out/lib/${python3Packages.python.libPrefix}/site-packages/paperwork_gtk
+    site=$out/${python3Packages.python.sitePackages}/paperwork_gtk
     for i in $site/data/paperwork_*.png; do
       ln -s $i $site/icon/out;
     done