Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

paperlib: init at 3.1.6 #323958

Merged
merged 1 commit into from
Jul 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions pkgs/by-name/pa/paperlib/package.nix
ByteSudoer marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
lib,
stdenv,
fetchurl,
appimageTools,
undmg,
}:
let
pname = "paperlib";
version = "3.1.6";
src =
fetchurl
{
x86_64-darwin = {
url = "https://github.com/Future-Scholars/peperlib/releases/download/release-electron-${version}/Paperlib_${version}.dmg";
hash = "sha256-d9vEFx59K15PO7DJYJQ2fjiagqa8oJLtoawILDF9IKc=";
};
x86_64-linux = {
url = "https://github.com/Future-Scholars/paperlib/releases/download/release-electron-${version}/Paperlib_${version}.AppImage";
hash = "sha256-2xbn9UWlcf37n9jZdZKyyevzsag6SW9YuQH/bYCRmLQ=";
};
}
.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");

passthru = {
inherit pname version src;
};

meta = {
homepage = "https://github.com/Future-Scholars/paperlib?";
description = "Open-source academic paper management tool";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ ByteSudoer ];
platforms = [
"x86_64-darwin"
"x86_64-linux"
];
mainProgram = "paperlib";
ByteSudoer marked this conversation as resolved.
Show resolved Hide resolved
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
};
in
if stdenv.isDarwin then
ByteSudoer marked this conversation as resolved.
Show resolved Hide resolved
stdenv.mkDerivation {
inherit
pname
version
src
meta
passthru
;

nativeBuildInputs = [ undmg ];

installPhase = ''
runHook preInstall
mkdir -p "$out/Applications"
mv Paperlib.app $out/Applications/
runHook postInstall
'';
}
else
appimageTools.wrapType2 {
inherit
pname
version
src
meta
passthru
;

extraPkgs = pkgs: [ pkgs.libsecret ];
}