From 4a58f744f17d6a63fc8437c9d1ee83e22d6eb928 Mon Sep 17 00:00:00 2001 From: Samuel Dionne-Riel Date: Fri, 9 Nov 2018 13:52:26 -0500 Subject: [PATCH] libreoffice-*: inherits meta. This ensures the package listing shows the expected informations. --- pkgs/applications/office/libreoffice/wrapper.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/office/libreoffice/wrapper.nix b/pkgs/applications/office/libreoffice/wrapper.nix index 8566bd76e1e2..ce8910d76d45 100644 --- a/pkgs/applications/office/libreoffice/wrapper.nix +++ b/pkgs/applications/office/libreoffice/wrapper.nix @@ -13,4 +13,7 @@ in for i in $(ls "${libreoffice}/bin/"); do test "$i" = "soffice" || ln -s soffice "$out/bin/$(basename "$i")" done -'') // { inherit libreoffice dbus; } +'') // { + inherit libreoffice dbus; + meta = libreoffice.meta; +}