evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / zo / zotero / package.nix
blobf6117050c97fd4c59b3cf20cfa092f4949909208
2   lib,
3   stdenv,
4   callPackage,
5 }:
7 let
8   pname = "zotero";
9   version = "7.0.8";
10   meta = {
11     homepage = "https://www.zotero.org";
12     description = "Collect, organize, cite, and share your research sources";
13     mainProgram = "zotero";
14     sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
15     license = lib.licenses.agpl3Only;
16     platforms = [
17       "x86_64-linux"
18       "x86_64-darwin"
19       "aarch64-darwin"
20     ];
21     maintainers = with lib.maintainers; [
22       atila
23       justanotherariel
24     ];
25   };
27 if stdenv.hostPlatform.isDarwin then
28   callPackage ./darwin.nix { inherit pname version meta; }
29 else
30   callPackage ./linux.nix { inherit pname version meta; }