nixpkgs/pkgs/applications/misc/remnote/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
541 B
Nix
Raw Normal View History

2022-04-28 01:36:18 +00:00
{ lib, fetchurl, appimageTools }:
appimageTools.wrapType2 rec {
pname = "remnote";
2023-01-08 05:11:09 +00:00
version = "1.8.52";
2022-04-28 01:36:18 +00:00
src = fetchurl {
url = "https://download.remnote.io/RemNote-${version}.AppImage";
2023-01-08 05:11:09 +00:00
sha256 = "sha256-0t4i/4dlZ1tv4kz8eD5cjIuhx0lT8dQbh+bpjqAfqTE=";
2022-04-28 01:36:18 +00:00
};
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;
};
}