python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / remnote / default.nix
blobd19d27153fa01a1a744740c5d832112652a291d9
1 { lib, fetchurl, appimageTools }:
3 appimageTools.wrapType2 rec {
4   pname = "remnote";
5   version = "1.7.6";
7   src = fetchurl {
8     url = "https://download.remnote.io/RemNote-${version}.AppImage";
9     sha256 = "sha256-yRUpLev/Fr3mOamkFgevArv2UoXgV4e6zlyv7FaQ4RM=";
10   };
12   meta = with lib; {
13     description = "A note-taking application focused on learning and productivity";
14     homepage = "https://remnote.com/";
15     maintainers = with maintainers; [ max-niederman ];
16     license = licenses.unfree;
17     platforms = platforms.linux;
18   };