thedesk 24.0.8 -> 24.0.10 https://github.com/cutls/TheDesk/releases attrpath: thedesk Checking auto update branch... No auto update branch exists Old version 24.0.8" not present in master derivation file with contents: { lib, stdenv, fetchurl, dpkg, autoPatchelfHook, makeWrapper, electron , alsa-lib, gtk3, libxshmfence, mesa, nss }: stdenv.mkDerivation rec { pname = "thedesk"; version = "24.0.10"; src = fetchurl { url = "https://github.com/cutls/TheDesk/releases/download/v${version}/${pname}_${version}_amd64.deb"; sha256 = "sha256-0ZXI3KyRgRHUcRiSNn5a4eSy5Kgcl9HAsP79J2L/vW0="; }; nativeBuildInputs = [ dpkg autoPatchelfHook makeWrapper ]; buildInputs = [ alsa-lib gtk3 libxshmfence mesa nss ]; dontBuild = true; dontConfigure = true; unpackPhase = '' dpkg-deb -x ${src} ./ ''; installPhase = '' runHook preInstall mv usr $out mv opt $out substituteInPlace $out/share/applications/thedesk.desktop \ --replace '/opt/TheDesk' $out/bin makeWrapper ${electron}/bin/electron $out/bin/thedesk \ --add-flags $out/opt/TheDesk/resources/app.asar runHook postInstall ''; meta = with lib; { description = "Mastodon/Misskey Client for PC"; homepage = "https://thedesk.top"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.gpl3Only; maintainers = with maintainers; [ wolfangaukang ]; platforms = [ "x86_64-linux" ]; }; }