tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
github-desktop: 3.2.1 -> 3.2.5
Pol Dellaiera
2 years ago
059cc3bf
f3615998
+3
-6
2 changed files
expand all
collapse all
unified
split
pkgs
applications
version-management
github-desktop
default.nix
top-level
all-packages.nix
+2
-2
pkgs/applications/version-management/github-desktop/default.nix
···
21
21
22
22
stdenv.mkDerivation (finalAttrs: {
23
23
pname = "github-desktop";
24
24
-
version = "3.2.1";
24
24
+
version = "3.2.5";
25
25
26
26
src = fetchurl {
27
27
url = "https://github.com/shiftkey/desktop/releases/download/release-${finalAttrs.version}-linux1/GitHubDesktop-linux-${finalAttrs.version}-linux1.deb";
28
28
-
hash = "sha256-OdvebRvOTyadgNjzrv6CGDPkljfpo4RVvVAc+X9hjSo=";
28
28
+
hash = "sha256-p+qr9/aEQcfkKArC3oTyIijHkaNzLum3xXeSnNexgbU=";
29
29
};
30
30
31
31
nativeBuildInputs = [
+1
-4
pkgs/top-level/all-packages.nix
···
3674
3674
3675
3675
github-copilot-intellij-agent = callPackage ../development/tools/github-copilot-intellij-agent { };
3676
3676
3677
3677
-
github-desktop = callPackage ../applications/version-management/github-desktop {
3678
3678
-
openssl = openssl_1_1;
3679
3679
-
curl = curl.override { openssl = openssl_1_1; };
3680
3680
-
};
3677
3677
+
github-desktop = callPackage ../applications/version-management/github-desktop { };
3681
3678
3682
3679
github-to-sqlite = with python3Packages; toPythonApplication github-to-sqlite;
3683
3680