mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
46 lines
1.4 KiB
Nix
46 lines
1.4 KiB
Nix
{ lib
|
|
, fetchurl
|
|
, appimageTools
|
|
, gconf
|
|
, imagemagick
|
|
}:
|
|
|
|
let
|
|
pname = "mendeley";
|
|
version = "2.110.2";
|
|
|
|
executableName = "${pname}-reference-manager";
|
|
|
|
src = fetchurl {
|
|
url = "https://static.mendeley.com/bin/desktop/mendeley-reference-manager-${version}-x86_64.AppImage";
|
|
hash = "sha256-AJNNCPEwLAO1+Zub6Yyad5Zcsl35zf4dEboyGE9wSX8=";
|
|
};
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
inherit pname version src;
|
|
};
|
|
in appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
|
|
extraInstallCommands = ''
|
|
mv $out/bin/$name $out/bin/${executableName}
|
|
install -m 444 -D ${appimageContents}/${executableName}.desktop $out/share/applications/${executableName}.desktop
|
|
${imagemagick}/bin/convert ${appimageContents}/${executableName}.png -resize 512x512 ${pname}_512.png
|
|
install -m 444 -D ${pname}_512.png $out/share/icons/hicolor/512x512/apps/${executableName}.png
|
|
|
|
substituteInPlace $out/share/applications/${executableName}.desktop \
|
|
--replace 'Exec=AppRun' 'Exec=${executableName}'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.mendeley.com";
|
|
description = "A reference manager and academic social network";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ dtzWill atila ];
|
|
mainProgram = "mendeley-reference-manager";
|
|
};
|
|
|
|
}
|