hub: make patch urls reproducible

+4 -2
+4 -2
pkgs/applications/version-management/hub/default.nix
··· 23 24 patches = [ 25 # Fix `fish` completions 26 (fetchpatch { 27 - url = "https://github.com/github/hub/pull/3036.patch"; 28 hash = "sha256-pR/OkGa2ICR4n1pLNx8E2UTtLeDwFtXxeeTB94KFjC4="; 29 }) 30 # Fix `bash` completions 31 (fetchpatch { 32 - url = "https://github.com/github/hub/pull/2948.patch"; 33 hash = "sha256-jGFFIvSKEIpTQY0Wz63cqciUk25MzPHv5Z1ox8l7wmo="; 34 }) 35 ];
··· 23 24 patches = [ 25 # Fix `fish` completions 26 + # https://github.com/github/hub/pull/3036 27 (fetchpatch { 28 + url = "https://github.com/github/hub/commit/439b7699e79471fc789929bcdea2f30bd719963e.patch"; 29 hash = "sha256-pR/OkGa2ICR4n1pLNx8E2UTtLeDwFtXxeeTB94KFjC4="; 30 }) 31 # Fix `bash` completions 32 + # https://github.com/github/hub/pull/2948 33 (fetchpatch { 34 + url = "https://github.com/github/hub/commit/64b291006f208fc7db1d5be96ff7db5535f1d853.patch"; 35 hash = "sha256-jGFFIvSKEIpTQY0Wz63cqciUk25MzPHv5Z1ox8l7wmo="; 36 }) 37 ];