about summary refs log tree commit diff
path: root/pkgs/applications/version-management
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2024-06-20 03:01:00 +0200
committerGitHub <noreply@github.com>2024-06-20 03:01:00 +0200
commitdd3cf6eb699a599d41a2ed85fa6a22b7578d6756 (patch)
tree850cb523c0dd6e9473cc42e0a46a1ef8dde0d3c4 /pkgs/applications/version-management
parenta15139cf872af66012b59d03b89d5410a31a9e08 (diff)
parent7e9245b3de657857257d8abd06e77073e059c1af (diff)
Merge pull request #318783 from pbsds/fix-reproducible-patch-urls-1717622023
 treewide: make fetchpatch urls reproducible
Diffstat (limited to 'pkgs/applications/version-management')
-rw-r--r--pkgs/applications/version-management/git-branchless/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/applications/version-management/git-branchless/default.nix b/pkgs/applications/version-management/git-branchless/default.nix
index cccbb0503fedd..44047945728a9 100644
--- a/pkgs/applications/version-management/git-branchless/default.nix
+++ b/pkgs/applications/version-management/git-branchless/default.nix
@@ -27,12 +27,14 @@ rustPlatform.buildRustPackage rec {
   patches = [
     # Fix tests with Git 2.44.0+
     (fetchpatch {
-      url = "https://github.com/arxanas/git-branchless/pull/1245.patch";
+      name = "1245.patch"; # https://github.com/arxanas/git-branchless/pull/1245
+      url = "https://github.com/arxanas/git-branchless/commit/c8436aed3d616409b4d6fb1eedb383077f435497.patch";
       hash = "sha256-gBm0A478Uhg9IQVLQppvIeTa8s1yHUMddxiUbpHUvGw=";
     })
     # Fix tests with Git 2.44.0+
     (fetchpatch {
-      url = "https://github.com/arxanas/git-branchless/pull/1161.patch";
+      name = "1161.patch"; # https://github.com/arxanas/git-branchless/pull/1161
+      url = "https://github.com/arxanas/git-branchless/commit/6e1f26900a0dd60d10d9aa3552cab9181fa7be03.patch";
       hash = "sha256-KHobEIXhlDar8CvIVUi4I695jcJZXgGRhU86b99x86Y=";
     })
   ];