about summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorElijah M. Immer <me@eimmer.me>2024-01-29 11:29:33 -0800
committerElijah M. Immer <me@eimmer.me>2024-01-29 12:31:14 -0800
commit646c1542dbb0330acb010b94968c7d456f86c4cb (patch)
tree92b8137d584fa6520c8e525ce134f8a234aec516 /pkgs/applications/office
parent5f5d111816f94bd5a49f02064a564d2263abd352 (diff)
downloadnixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar.gz
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar.bz2
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar.lz
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar.xz
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.tar.zst
nixlib-646c1542dbb0330acb010b94968c7d456f86c4cb.zip
zotero: Add meta.mainProgram
The lib.getExe function's feature of assuming the program name from the
package is depracated, and it says to specify it here.

I was not sure whether I should do zotero itself, or .zotero-wrapped. I
put just zotero here, but I will change it if it should be the wrapped
version.

I didn't see any meta.mainProgam use the wrapped one, so I didn't use it
here.
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/zotero/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/applications/office/zotero/default.nix b/pkgs/applications/office/zotero/default.nix
index a23d7d3d8849..a5c49591f086 100644
--- a/pkgs/applications/office/zotero/default.nix
+++ b/pkgs/applications/office/zotero/default.nix
@@ -153,5 +153,6 @@ stdenv.mkDerivation rec {
     license = licenses.agpl3Only;
     platforms = [ "x86_64-linux" ];
     maintainers = with maintainers; [ i077 ];
+    mainProgram = "zotero";
   };
 }