nixpkgs/pkgs/applications/office/zotero/default.nix

152 lines
3.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, wrapGAppsHook, makeDesktopItem
, atk
, cairo
, coreutils
, curl
, cups
, dbus-glib
, dbus
2019-11-30 23:11:47 +00:00
, dconf
, fontconfig
, freetype
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
, glib
, glibc
, gtk3
, libX11
, libXScrnSaver
, libxcb
, libXcomposite
, libXcursor
, libXdamage
, libXext
, libXfixes
, libXi
, libXinerama
, libXrender
, libXt
, libnotify
, gnome3
2019-11-10 16:44:34 +00:00
, libGLU, libGL
, nspr
, nss
, pango
, gsettings-desktop-schemas
}:
stdenv.mkDerivation rec {
pname = "zotero";
2021-03-09 06:03:06 +00:00
version = "5.0.96";
2019-05-22 11:03:39 +00:00
src = fetchurl {
url = "https://download.zotero.org/client/release/${version}/Zotero-${version}_linux-x86_64.tar.bz2";
2021-03-09 06:03:06 +00:00
sha256 = "sha256-W8Iu8UoTqC3aK7lB4bq1L7cNmjaEvjEK+ODcZ9kk3f8=";
};
2019-05-22 11:03:39 +00:00
2020-03-30 20:02:52 +00:00
nativeBuildInputs = [ wrapGAppsHook ];
buildInputs= [ gsettings-desktop-schemas glib gtk3 gnome3.adwaita-icon-theme dconf ];
2020-03-30 20:02:52 +00:00
dontConfigure = true;
dontBuild = true;
dontStrip = true;
dontPatchELF = true;
2021-01-15 05:42:41 +00:00
libPath = lib.makeLibraryPath
[ stdenv.cc.cc
atk
cairo
curl
cups
dbus-glib
dbus
fontconfig
freetype
2019-05-22 11:03:39 +00:00
gdk-pixbuf
glib
glibc
gtk3
libX11
libXScrnSaver
libXcomposite
libXcursor
libxcb
libXdamage
libXext
libXfixes
libXi
libXinerama
libXrender
libXt
libnotify
2019-11-10 16:44:34 +00:00
libGLU libGL
nspr
nss
pango
2021-01-15 05:42:41 +00:00
] + ":" + lib.makeSearchPathOutput "lib" "lib64" [
stdenv.cc.cc
];
2017-11-16 11:33:39 +00:00
2021-02-22 18:09:28 +00:00
postPatch = ''
sed -i '/pref("app.update.enabled", true);/c\pref("app.update.enabled", false);' defaults/preferences/prefs.js
'';
2017-11-16 11:33:39 +00:00
2019-08-13 21:52:01 +00:00
desktopItem = makeDesktopItem {
2019-03-14 04:26:39 +00:00
name = "zotero-${version}";
exec = "zotero -url %U";
icon = "zotero";
type = "Application";
comment = meta.description;
desktopName = "Zotero";
genericName = "Reference Management";
categories = "Office;Database;";
startupNotify = "true";
mimeType = "text/plain";
};
2021-02-22 18:09:28 +00:00
installPhase = ''
runHook preInstall
2017-11-16 11:33:39 +00:00
2021-02-22 18:09:28 +00:00
mkdir -p "$prefix/usr/lib/zotero-bin-${version}"
cp -r * "$prefix/usr/lib/zotero-bin-${version}"
mkdir -p "$out/bin"
ln -s "$prefix/usr/lib/zotero-bin-${version}/zotero" "$out/bin/"
2021-02-22 18:09:28 +00:00
# install desktop file and icons.
mkdir -p $out/share/applications
cp ${desktopItem}/share/applications/* $out/share/applications/
for size in 16 32 48 256; do
install -Dm444 chrome/icons/default/default$size.png \
$out/share/icons/hicolor/''${size}x''${size}/apps/zotero.png
done
for executable in \
zotero-bin plugin-container \
updater minidump-analyzer
do
if [ -e "$out/usr/lib/zotero-bin-${version}/$executable" ]; then
patchelf --interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
"$out/usr/lib/zotero-bin-${version}/$executable"
fi
done
find . -executable -type f -exec \
patchelf --set-rpath "$libPath" \
"$out/usr/lib/zotero-bin-${version}/{}" \;
runHook postInstall
'';
preFixup = ''
gappsWrapperArgs+=(
2021-01-15 05:42:41 +00:00
--prefix PATH : ${lib.makeBinPath [ coreutils ]}
)
'';
meta = with lib; {
2020-02-27 18:51:10 +00:00
homepage = "https://www.zotero.org";
description = "Collect, organize, cite, and share your research sources";
2021-02-22 18:09:28 +00:00
license = licenses.agpl3Only;
platforms = platforms.linux;
2021-02-22 18:09:28 +00:00
maintainers = with maintainers; [ i077 ];
};
}