2023-10-09 19:29:22 +00:00
|
|
|
{
|
2024-06-05 15:53:02 +00:00
|
|
|
lib,
|
|
|
|
fetchurl,
|
|
|
|
appimageTools,
|
|
|
|
}:
|
|
|
|
let
|
2022-05-18 14:49:53 +00:00
|
|
|
pname = "remnote";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "1.16.18";
|
2022-05-18 14:49:53 +00:00
|
|
|
src = fetchurl {
|
2024-06-05 15:53:02 +00:00
|
|
|
url = "https://download2.remnote.io/remnote-desktop2/RemNote-${version}.AppImage";
|
|
|
|
hash = "sha256-ps7Rl1oA2QOPvO2XeCY8DrWtCV9WPlX9jbhypz2ZARA=";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
2024-06-05 15:53:02 +00:00
|
|
|
appimageContents = appimageTools.extractType2 { inherit pname version src; };
|
|
|
|
in
|
|
|
|
appimageTools.wrapType2 {
|
|
|
|
inherit pname version src;
|
|
|
|
|
|
|
|
extraInstallCommands = ''
|
|
|
|
install -Dm444 ${appimageContents}/remnote.desktop -t $out/share/applications
|
|
|
|
substituteInPlace $out/share/applications/remnote.desktop \
|
|
|
|
--replace-fail 'Exec=AppRun --no-sandbox %U' 'Exec=remnote %u'
|
|
|
|
install -Dm444 ${appimageContents}/remnote.png -t $out/share/pixmaps
|
2023-10-09 19:29:22 +00:00
|
|
|
'';
|
2024-04-21 15:54:59 +00:00
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Note-taking application focused on learning and productivity";
|
2022-05-18 14:49:53 +00:00
|
|
|
homepage = "https://remnote.com/";
|
2024-06-20 14:57:18 +00:00
|
|
|
maintainers = with maintainers; [ chewblacka ];
|
2022-05-18 14:49:53 +00:00
|
|
|
license = licenses.unfree;
|
2023-10-09 19:29:22 +00:00
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
mainProgram = "remnote";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
2024-06-05 15:53:02 +00:00
|
|
|
}
|