cinny-desktop 2.2.2 -> 2.2.3 https://github.com/cinnyapp/cinny-desktop/releases attrpath: cinny-desktop Checking auto update branch... No auto update branch exists Old version 2.2.2" not present in master derivation file with contents: { stdenv , lib , dpkg , fetchurl , autoPatchelfHook , glib-networking , openssl , webkitgtk , wrapGAppsHook }: stdenv.mkDerivation rec { name = "cinny-desktop"; version = "2.2.3"; src = fetchurl { url = "https://github.com/cinnyapp/cinny-desktop/releases/download/v${version}/Cinny_desktop-x86_64.deb"; sha256 = "sha256-siEAIZ9cCIJZTkeZkvT5yrPjRGoOl7vjU98AUrhgJNw="; }; nativeBuildInputs = [ autoPatchelfHook dpkg ]; buildInputs = [ glib-networking openssl webkitgtk wrapGAppsHook ]; unpackCmd = "dpkg-deb -x $curSrc source"; installPhase = "mv usr $out"; meta = with lib; { description = "Yet another matrix client for desktop"; homepage = "https://github.com/cinnyapp/cinny-desktop"; maintainers = [ maintainers.aveltras ]; license = licenses.mit; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; platforms = platforms.linux; mainProgram = "cinny"; }; }