nixpkgs/pkgs/applications/misc/remnote/default.nix
chewblacka 7cbd6c6bcc
remnote: 1.8.52 -> 1.12.3 (#247342)
Updated remnote from version 1.8.52 to 1.12.3
2023-08-05 23:16:37 +02:00

20 lines
557 B
Nix

{ lib, fetchurl, appimageTools }:
appimageTools.wrapType2 rec {
pname = "remnote";
version = "1.12.3";
src = fetchurl {
url = "https://download.remnote.io/remnote-desktop/RemNote-${version}.AppImage";
sha256 = "sha256-qLEEIzTE5h9+9tWL0qSFCqN/MW124NtIacqiKnhlbp8=";
};
meta = with lib; {
description = "A note-taking application focused on learning and productivity";
homepage = "https://remnote.com/";
maintainers = with maintainers; [ max-niederman ];
license = licenses.unfree;
platforms = platforms.linux;
};
}