anytype 0.37.0 -> 0.37.3 https://repology.org/project/anytype/versions attrpath: anytype Checking auto update branch... No auto update branch exists Old version 0.37.0" not present in master derivation file with contents: { lib, fetchurl, appimageTools, makeWrapper }: let pname = "anytype"; version = "0.37.3"; name = "Anytype-${version}"; nameExecutable = pname; src = fetchurl { url = "https://github.com/anyproto/anytype-ts/releases/download/v${version}/${name}.AppImage"; name = "Anytype-${version}.AppImage"; sha256 = "sha256-W3p67L07XOEtXYluI+TvggXBdaNRadypZc9MO6QTh4M="; }; appimageContents = appimageTools.extractType2 { inherit name src; }; in appimageTools.wrapType2 { inherit name src; extraPkgs = pkgs: (appimageTools.defaultFhsEnvArgs.multiPkgs pkgs) ++ [ pkgs.libsecret ]; extraInstallCommands = '' mv $out/bin/${name} $out/bin/${pname} source "${makeWrapper}/nix-support/setup-hook" wrapProgram $out/bin/${pname} \ --add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}" install -m 444 -D ${appimageContents}/anytype.desktop -t $out/share/applications substituteInPlace $out/share/applications/anytype.desktop \ --replace 'Exec=AppRun' 'Exec=${pname}' for size in 16 32 64 128 256 512 1024; do install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/''${size}x''${size}/apps/anytype.png \ $out/share/icons/hicolor/''${size}x''${size}/apps/anytype.png done ''; meta = with lib; { description = "P2P note-taking tool"; homepage = "https://anytype.io/"; license = licenses.unfree; maintainers = with maintainers; [ running-grass ]; platforms = [ "x86_64-linux" ]; }; }