anytype 0.35.4 -> 0.36.0 https://repology.org/project/anytype/versions attrpath: anytype Checking auto update branch... No auto update branch exists Old version 0.35.4" not present in master derivation file with contents: { lib, fetchurl, appimageTools, makeWrapper }: let pname = "anytype"; version = "0.35.25-beta"; 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-55VT4t/SNl13Gdh7LG4SqLN9uo0cYDu0LnPFIuZ7Sm0="; }; 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}' install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/0x0/apps/anytype.png \ $out/share/icons/hicolor/512x512/apps/anytype.png ''; meta = with lib; { description = "P2P note-taking tool"; homepage = "https://anytype.io/"; license = licenses.unfree; maintainers = with maintainers; [ ]; platforms = [ "x86_64-linux" ]; }; }