58 lines
1.5 KiB
Nix
58 lines
1.5 KiB
Nix
{ lib, stdenv, fetchurl, appimageTools, makeDesktopItem }:
|
|
|
|
stdenv.mkDerivation (finalAttrs: let
|
|
inherit (finalAttrs) pname version src appexec icon desktopItem;
|
|
|
|
in
|
|
{
|
|
pname = "remnote";
|
|
version = "1.16.4";
|
|
|
|
src = fetchurl {
|
|
url = "https://download.remnote.io/remnote-desktop/RemNote-${version}.AppImage";
|
|
hash = "sha256-dgbQ0cbPq7BSQ9VwwH6+GoAxb85HDxRixfjeDJBtOrg=";
|
|
};
|
|
|
|
appexec = appimageTools.wrapType2 {
|
|
inherit pname version src;
|
|
};
|
|
|
|
icon = fetchurl {
|
|
url = "https://www.remnote.io/icon.png";
|
|
hash = "sha256-r5D7fNefKPdjtmV7f/88Gn3tqeEG8LGuD4nHI/sCk94=";
|
|
};
|
|
|
|
desktopItem = makeDesktopItem {
|
|
type = "Application";
|
|
name = "remnote";
|
|
desktopName = "RemNote";
|
|
comment = "Spaced Repetition";
|
|
icon = "remnote";
|
|
exec = "remnote %u";
|
|
categories = [ "Office" ];
|
|
mimeTypes = [ "x-scheme-handler/remnote" "x-scheme-handler/rn" ];
|
|
};
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm755 ${appexec}/bin/remnote $out/bin/remnote
|
|
install -Dm444 "${desktopItem}/share/applications/"* -t $out/share/applications/
|
|
install -Dm444 ${icon} $out/share/pixmaps/remnote.png
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A note-taking application focused on learning and productivity";
|
|
homepage = "https://remnote.com/";
|
|
maintainers = with maintainers; [ max-niederman chewblacka ];
|
|
license = licenses.unfree;
|
|
platforms = [ "x86_64-linux" ];
|
|
mainProgram = "remnote";
|
|
};
|
|
})
|