about summary refs log tree commit diff
diff options
context:
space:
mode:
authorilmari-lauhakangas <ilmari-lauhakangas@users.noreply.github.com>2021-08-19 12:08:09 +0300
committerGitHub <noreply@github.com>2021-08-19 12:08:09 +0300
commit68e256c0cee465ed12bf0168f6068dcc6c9a363e (patch)
tree76ac376cbaf319fbfeb7867094033f09847ff789
parent7efb6066ac9a569342f937248e939822c142c3ea (diff)
Define patches, don't add to it
-rw-r--r--pkgs/applications/office/libreoffice/src-still/override.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/office/libreoffice/src-still/override.nix b/pkgs/applications/office/libreoffice/src-still/override.nix
index b90a0fb5bfdc6..97435f9c6d427 100644
--- a/pkgs/applications/office/libreoffice/src-still/override.nix
+++ b/pkgs/applications/office/libreoffice/src-still/override.nix
@@ -7,7 +7,7 @@ attrs:
   configureFlags = attrs.configureFlags ++ [
     (lib.enableFeature kdeIntegration "kf5")
   ];
-  patches = attrs.patches ++ [ ./xdg-open-brief.patch ];
+  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"}