paperlib: 3.1.6 -> 3.1.10 (#381053)

This commit is contained in:
Arne Keller
2025-02-26 20:23:38 +01:00
committed by GitHub
+15 -7
View File
@@ -4,34 +4,40 @@
fetchurl,
appimageTools,
undmg,
_7zz,
}:
let
pname = "paperlib";
version = "3.1.6";
version = "3.1.10";
src =
fetchurl
{
aarch64-darwin = {
url = "https://github.com/Future-Scholars/paperlib/releases/download/release-electron-${version}/Paperlib_${version}_arm.dmg";
hash = "sha256-KNMPUeCNtODHzMJhCwI4SJPRfa87RmAe6CRRazgRZCQ=";
};
x86_64-darwin = {
url = "https://github.com/Future-Scholars/paperlib/releases/download/release-electron-${version}/Paperlib_${version}.dmg";
hash = "sha256-d9vEFx59K15PO7DJYJQ2fjiagqa8oJLtoawILDF9IKc=";
hash = "sha256-5QwF0+7Y4LzReHCj8yZrAJDAZVyY0ANC5gjAxdaVRkU=";
};
x86_64-linux = {
url = "https://github.com/Future-Scholars/paperlib/releases/download/release-electron-${version}/Paperlib_${version}.AppImage";
hash = "sha256-2xbn9UWlcf37n9jZdZKyyevzsag6SW9YuQH/bYCRmLQ=";
hash = "sha256-uBYhiUL4YWwnLLPvXMoXjlQqlqFep/OpwwnmPx7s5dY=";
};
}
.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
passthru = {
inherit pname version src;
};
meta = {
homepage = "https://github.com/Future-Scholars/paperlib?";
homepage = "https://github.com/Future-Scholars/paperlib";
description = "Open-source academic paper management tool";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ByteSudoer ];
platforms = [
"aarch64-darwin"
"x86_64-darwin"
"x86_64-linux"
];
@@ -51,12 +57,14 @@ if stdenv.hostPlatform.isDarwin then
sourceRoot = ".";
nativeBuildInputs = [ undmg ];
nativeBuildInputs = if stdenv.hostPlatform.isAarch64 then [ _7zz ] else [ undmg ];
installPhase = ''
runHook preInstall
mkdir -p "$out/Applications"
mkdir -p $out/Applications
mv Paperlib.app $out/Applications/
runHook postInstall
'';
}