tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
hub: make patch urls reproducible
Peder Bergebakken Sundt
2 years ago
eef61049
7cc9e7c2
+4
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
version-management
hub
default.nix
+4
-2
pkgs/applications/version-management/hub/default.nix
···
23
23
24
24
patches = [
25
25
# Fix `fish` completions
26
26
+
# https://github.com/github/hub/pull/3036
26
27
(fetchpatch {
27
27
-
url = "https://github.com/github/hub/pull/3036.patch";
28
28
+
url = "https://github.com/github/hub/commit/439b7699e79471fc789929bcdea2f30bd719963e.patch";
28
29
hash = "sha256-pR/OkGa2ICR4n1pLNx8E2UTtLeDwFtXxeeTB94KFjC4=";
29
30
})
30
31
# Fix `bash` completions
32
32
+
# https://github.com/github/hub/pull/2948
31
33
(fetchpatch {
32
32
-
url = "https://github.com/github/hub/pull/2948.patch";
34
34
+
url = "https://github.com/github/hub/commit/64b291006f208fc7db1d5be96ff7db5535f1d853.patch";
33
35
hash = "sha256-jGFFIvSKEIpTQY0Wz63cqciUk25MzPHv5Z1ox8l7wmo=";
34
36
})
35
37
];