github-desktop 3.0.6 -> 3.1.1-linux1 https://github.com/shiftkey/desktop/releases attrpath: github-desktop Checking auto update branch... No auto update branch exists Old version 3.0.6" not present in master derivation file with contents: { stdenv , lib , fetchurl , autoPatchelfHook , wrapGAppsHook , gnome , libsecret , git , curl , nss , nspr , xorg , libdrm , alsa-lib , cups , mesa , systemd , openssl }: stdenv.mkDerivation rec { pname = "github-desktop"; version = "3.1.1"; src = fetchurl { url = "https://github.com/shiftkey/desktop/releases/download/release-${version}-linux1/GitHubDesktop-linux-${version}-linux1.deb"; hash = "sha256-R8t0y7b2upMOsWebIBr9+qT2GqQ/ahzWLcFIWwK4JTs="; }; nativeBuildInputs = [ autoPatchelfHook wrapGAppsHook ]; buildInputs = [ gnome.gnome-keyring xorg.libXdamage xorg.libX11 libsecret git curl nss nspr libdrm alsa-lib cups mesa openssl ]; unpackPhase = '' mkdir -p $TMP/${pname} $out/{opt,bin} cp $src $TMP/${pname}.deb ar vx ${pname}.deb tar --no-overwrite-dir -xvf data.tar.xz -C $TMP/${pname}/ ''; installPhase = '' cp -R $TMP/${pname}/usr/share $out/ cp -R $TMP/${pname}/usr/lib/${pname}/* $out/opt/ ln -sf $out/opt/${pname} $out/bin/${pname} ''; runtimeDependencies = [ (lib.getLib systemd) ]; meta = with lib; { description = "GUI for managing Git and GitHub."; homepage = "https://desktop.github.com/"; sourceProvenance = with sourceTypes; [ binaryNativeCode ]; license = licenses.mit; maintainers = with maintainers; [ dan4ik605743 ]; platforms = platforms.linux; }; }