Skip to content

Commit 186741a

Browse files
committed
git-wt: add overlay to use latest
1 parent 5375370 commit 186741a

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/update-local-packages.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ jobs:
110110
nix-update --commit --flake gemini-cli-bin
111111
nix-update --commit --flake filen-rclone-unwrapped
112112
nix-update --commit --flake lima
113+
nix-update --commit --flake git-wt
113114
114115
- name: Count added commits
115116
id: count-commits

overlays/default.nix

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,22 @@
6868
};
6969
}
7070
);
71+
72+
git-wt = prev.unstable.git-wt.overrideAttrs (
73+
finalAttrs: previousAttrs: {
74+
# 0.15.0 or later is required to enable https://github.com/k1LoW/git-wt/pull/81
75+
version = "0.15.0";
76+
77+
src = prev.fetchFromGitHub {
78+
owner = "k1LoW";
79+
repo = "git-wt";
80+
tag = "v${finalAttrs.version}";
81+
hash = "sha256-A8vkwa8+RfupP9UaUuSVjkt5HtWvqR5VmSsVg2KpeMo=";
82+
};
83+
84+
vendorHash = "sha256-K5geAvG+mvnKeixOyZt0C1T5ojSBFmx2K/Msol0HsSg=";
85+
}
86+
);
7187
};
7288
})
7389
]

0 commit comments

Comments
 (0)