67 lines
1.5 KiB
Nix
67 lines
1.5 KiB
Nix
{ fetchurl, stdenv, dpkg, makeWrapper, which
|
|
,gcc, xorg, qt4, zlib
|
|
, ...}:
|
|
|
|
assert stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux";
|
|
|
|
let
|
|
arch32 = "i686-linux";
|
|
arch64 = "x86_64-linux";
|
|
|
|
arch = if stdenv.system == arch32
|
|
then "i386"
|
|
else "amd64";
|
|
|
|
shortVersion = "1.15.3-stable";
|
|
|
|
version = "${shortVersion}_${arch}";
|
|
|
|
url = "http://desktop-download.mendeley.com/download/apt/pool/main/m/mendeleydesktop/mendeleydesktop_${version}.deb";
|
|
sha256 = if stdenv.system == arch32
|
|
then "7d0737eb28cb4238fafdd6cf973ad899dd6a7622bc1a5c44f32a9c1790eaf6af"
|
|
else "0hvvyvbkbz8hg8s532rrrcv7jf07zh4axjzk18bvr6p9cgcdirl8";
|
|
|
|
deps = [
|
|
gcc.cc
|
|
qt4
|
|
xorg.libX11
|
|
zlib
|
|
];
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mendeley-${version}";
|
|
|
|
src = fetchurl {
|
|
url = url;
|
|
sha256 = sha256;
|
|
};
|
|
|
|
buildInputs = [ dpkg makeWrapper which ];
|
|
|
|
unpackPhase = "true";
|
|
|
|
installPhase = ''
|
|
dpkg-deb -x $src $out
|
|
mv $out/opt/mendeleydesktop/{bin,lib,plugins,share} $out
|
|
|
|
interpreter=$(patchelf --print-interpreter $(readlink -f $(which patchelf)))
|
|
patchelf --set-interpreter $interpreter $out/bin/mendeleydesktop
|
|
|
|
librarypath="${stdenv.lib.makeLibraryPath deps}:$out/lib:$out/lib/qt"
|
|
wrapProgram $out/bin/mendeleydesktop --prefix LD_LIBRARY_PATH : "$librarypath"
|
|
'';
|
|
|
|
dontStrip = true;
|
|
dontPatchElf = true;
|
|
|
|
meta = {
|
|
homepage = http://www.mendeley.com;
|
|
description = "A reference manager and academic social network";
|
|
license = stdenv.lib.licenses.unfree;
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
|
|
}
|