From 646c1542dbb0330acb010b94968c7d456f86c4cb Mon Sep 17 00:00:00 2001 From: "Elijah M. Immer" Date: Mon, 29 Jan 2024 11:29:33 -0800 Subject: [PATCH] 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. --- pkgs/applications/office/zotero/default.nix | 1 + 1 file changed, 1 insertion(+) 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"; }; }