-
-
Notifications
You must be signed in to change notification settings - Fork 14.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #323958 from ByteSudoer/init-paperlib
- Loading branch information
Showing
1 changed file
with
72 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | ||
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ]; | ||
}; | ||
in | ||
if stdenv.isDarwin then | ||
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 ]; | ||
} |