mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
remnote: refactor code (#251774)
* remnote: 1.12.9 -> 1.12.18 * remnote: refactor using stdenv * remnote: add appexec * remnote: add icon * remnote: add DesktopItem * remnote: add installPhase * remnote: change platform to x86_64-linux * remnote: 1.12.18 -> 1.12.22 * remnote: change to finalAttrs idiom
This commit is contained in:
parent
396f572d64
commit
f884153fb1
@ -1,19 +1,52 @@
|
|||||||
{ lib, fetchurl, appimageTools }:
|
{ lib, stdenv, fetchurl, appimageTools, makeDesktopItem }:
|
||||||
|
|
||||||
appimageTools.wrapType2 rec {
|
stdenv.mkDerivation (finalAttrs: let
|
||||||
|
inherit (finalAttrs) pname version src appexec icon desktopItem;
|
||||||
|
|
||||||
|
in
|
||||||
|
{
|
||||||
pname = "remnote";
|
pname = "remnote";
|
||||||
version = "1.12.9";
|
version = "1.12.22";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.remnote.io/remnote-desktop/RemNote-${version}.AppImage";
|
url = "https://download.remnote.io/remnote-desktop/RemNote-${version}.AppImage";
|
||||||
sha256 = "sha256-ZBo7yxbTS+2pWecbPGxp0UMy16HRMwuuUUejb6DUHic=";
|
hash = "sha256-lsTs9Xf0gDRvHQkteNu2JK2eZvF7XK0ryZZgMwTRWvk=";
|
||||||
};
|
};
|
||||||
|
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 -D ${appexec}/bin/remnote-${version} $out/bin/remnote
|
||||||
|
install -D "${desktopItem}/share/applications/"* -t $out/share/applications/
|
||||||
|
install -D ${icon} $out/share/pixmaps/remnote.png
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "A note-taking application focused on learning and productivity";
|
description = "A note-taking application focused on learning and productivity";
|
||||||
homepage = "https://remnote.com/";
|
homepage = "https://remnote.com/";
|
||||||
maintainers = with maintainers; [ max-niederman jgarcia ];
|
maintainers = with maintainers; [ max-niederman jgarcia ];
|
||||||
license = licenses.unfree;
|
license = licenses.unfree;
|
||||||
platforms = platforms.linux;
|
platforms = [ "x86_64-linux" ];
|
||||||
|
mainProgram = "remnote";
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user