summary refs log tree commit diff
path: root/pkgs/development/python-modules/img2pdf/default-icc-profile.patch
blob: 139eafd63ced7978a9fd9da21867fcc568f22eb3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
diff --git a/src/img2pdf.py b/src/img2pdf.py
index 036232b..d2e7829 100755
--- a/src/img2pdf.py
+++ b/src/img2pdf.py
@@ -3815,14 +3815,7 @@ def gui():
 
 
 def get_default_icc_profile():
-    for profile in [
-        "/usr/share/color/icc/sRGB.icc",
-        "/usr/share/color/icc/OpenICC/sRGB.icc",
-        "/usr/share/color/icc/colord/sRGB.icc",
-    ]:
-        if os.path.exists(profile):
-            return profile
-    return "/usr/share/color/icc/sRGB.icc"
+    return "@srgbProfile@"
 
 
 def get_main_parser():