mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-22 22:45:37 +00:00
gh-cli overlay for log view on composite actions
can be removed with the next release of gh-cli
This commit is contained in:
parent
25e56b7421
commit
0f4914db95
@ -123,6 +123,7 @@
|
|||||||
(import ./overlays/neovim-plugins.nix inputs)
|
(import ./overlays/neovim-plugins.nix inputs)
|
||||||
(import ./overlays/lib.nix)
|
(import ./overlays/lib.nix)
|
||||||
(import ./overlays/calibre-web.nix)
|
(import ./overlays/calibre-web.nix)
|
||||||
|
(import ./overlays/gh-cli.nix)
|
||||||
];
|
];
|
||||||
|
|
||||||
# System types to support.
|
# System types to support.
|
||||||
|
12
overlays/gh-cli.nix
Normal file
12
overlays/gh-cli.nix
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Testing: https://github.com/cli/cli/issues/5011#issuecomment-1576931518
|
||||||
|
|
||||||
|
_final: prev: {
|
||||||
|
gh = prev.gh.overrideAttrs (old: {
|
||||||
|
src = prev.fetchFromGitHub {
|
||||||
|
owner = "cli";
|
||||||
|
repo = "cli";
|
||||||
|
rev = "420f63c3ec660d27182b713bd18459e7376f0a7a";
|
||||||
|
sha256 = "sha256-ik4YCQBTr9637dofrh/AcgoOBa8Bx9F+brUMpC8u5U8=";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user