3
0
Fork 0
forked from mirrors/nixpkgs

libreoffice: xdg-open-brief.patch not needed for 7.2

This commit is contained in:
ilmari-lauhakangas 2021-08-19 11:51:44 +03:00 committed by GitHub
parent de5b6e117d
commit 4b5182477c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,4 +7,9 @@ attrs:
configureFlags = attrs.configureFlags ++ [
(lib.enableFeature kdeIntegration "kf5")
];
patches = attrs.patches ++ [ ./xdg-open-brief.patch ];
postPatch = attrs.postPatch + ''
substituteInPlace shell/source/unix/exec/shellexec.cxx \
--replace /usr/bin/xdg-open ${if kdeIntegration then "kde-open5" else "xdg-open"}
'';
}