Merge pull request #190972 from anthonyroussel/github-desktop-3.0.6

github-desktop: 3.0.5 -> 3.0.6
This commit is contained in:
Bobby Rong 2022-09-18 19:50:17 +08:00 committed by GitHub
commit 5a2308027f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -19,11 +19,11 @@
stdenv.mkDerivation rec {
pname = "github-desktop";
version = "3.0.5";
version = "3.0.6";
src = fetchurl {
url = "https://github.com/shiftkey/desktop/releases/download/release-${version}-linux1/GitHubDesktop-linux-${version}-linux1.deb";
sha256 = "sha256-7Sk2jDNZtOA04hkl/J+Up2yMGT8+FcXGPiUMcHhb7iY=";
hash = "sha256-UQsMT4/D571xgrU8C4HBoRO+qf08GCGerA4Y5gHcjRc=";
};
nativeBuildInputs = [

View file

@ -2554,7 +2554,9 @@ with pkgs;
github-commenter = callPackage ../development/tools/github-commenter { };
github-desktop = callPackage ../applications/version-management/github-desktop { };
github-desktop = callPackage ../applications/version-management/github-desktop {
curl = curl.override { openssl = openssl_1_1; };
};
github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite;