gh-cli overlay for log view on composite actions

can be removed with the next release of gh-cli
This commit is contained in:
Noah Masur 2023-06-16 08:00:42 -04:00
parent 25e56b7421
commit 0f4914db95
2 changed files with 13 additions and 0 deletions

View File

@ -123,6 +123,7 @@
(import ./overlays/neovim-plugins.nix inputs)
(import ./overlays/lib.nix)
(import ./overlays/calibre-web.nix)
(import ./overlays/gh-cli.nix)
];
# System types to support.

12
overlays/gh-cli.nix Normal file
View 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=";
};
});
}