📦 Add lazygit, diffnav, gh-dash, and k9s overlays #13

Merged
wymiller merged 4 commits from import-overlays-from-config into master 2026-09-06 13:55:31 -05:00
4 changed files with 13 additions and 11 deletions
Showing only changes of commit c59dc1252a - Show all commits
+3 -3
View File
@@ -12,14 +12,14 @@ in {
owner = "dlvhdr"; owner = "dlvhdr";
repo = "diffnav"; repo = "diffnav";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-6VtAQzZNLQrf8QYVXxLUgb3F6xguFDbwaE9kahPhbSE="; hash = "sha256-DrEbo9YYg4FCXQXuIkbPxO5Z3ZOPZJYeGoLoP/vT0Y0=";
}; };
vendorHash = "sha256-gmmckzR0D1oFuTG5TAb6gLMoNbcZl9EsjbFjhPfJqnQ="; vendorHash = "sha256-2OzHyBPsylQVXhPlqk2owEhiibFi3H1UENvGGDdzGss";
ldflags = [ ldflags = [
"-s" "-s"
"-w" "-w"
]; ];
}); });
} }
+3 -3
View File
@@ -12,10 +12,10 @@ in {
owner = "dlvhdr"; owner = "dlvhdr";
repo = "gh-dash"; repo = "gh-dash";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-C06LPVoE23ITJpMG0x75Djgeup+eb5uYwA8wL7xxvWU="; hash = "sha256-FUb4zrGT0L7S1O5EcOCop4n0zlx1ODsANzBcEl9bvOU=";
}; };
vendorHash = "sha256-4AbeoH0l7eIS7d0yyJxM7+woC7Q/FCh0BOJj3d1zyX4="; vendorHash = "sha256-3iUBuMvA2Xh7UjTiFNEs3tuZMCnSt/bIhTSEDD92yCU=";
doCheck = false; doCheck = false;
checkFlags = [ checkFlags = [
"-skip=TestFullOutput" "-skip=TestFullOutput"
@@ -33,4 +33,4 @@ in {
}; };
}; };
}); });
} }
+4 -2
View File
@@ -5,12 +5,14 @@ final: prev: {
owner = "derailed"; owner = "derailed";
repo = "k9s"; repo = "k9s";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-1z6r6v3n1p6vd2q6n4pl5q3f7q3q7q1p7j5j1k3l4m5n6o7p8q9r"; hash = "sha256-70Rfu1BVd/QnwWXRRpwIeZ2UJNWIGixpdiOHo4v7adA=";
}; };
vendorHash = "sha256-PkYDJK2oGl+siCG9p4R8shC0e5BhGFdJsc+ksL9J5zw=";
ldflags = [ ldflags = [
"-X github.com/derailed/k9s/version.Version=${version}" "-X github.com/derailed/k9s/version.Version=${version}"
"-X github.com/derailed/k9s/version.BuildSource=nix" "-X github.com/derailed/k9s/version.BuildSource=nix"
]; ];
}); });
} }
+3 -3
View File
@@ -1,11 +1,11 @@
final: prev: { final: prev: {
lazygitLatest = prev.lazygit.overrideAttrs (_: rec { lazygitLatest = prev.lazygit.overrideAttrs (_: rec {
version = "0.64.1"; version = "0.65.0";
src = prev.fetchFromGitHub { src = prev.fetchFromGitHub {
owner = "jesseduffield"; owner = "jesseduffield";
repo = "lazygit"; repo = "lazygit";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-G7JulCK9WUVWbp1V7lYuM3fehCdn1cNAJHYjr3aKDvQ="; hash = "sha256-W/Z/BnA5L8tXYrKn3bnekNnx7bEaaJRoHSGAeygcK0E=";
}; };
vendorHash = null; vendorHash = null;
@@ -15,4 +15,4 @@ final: prev: {
"-X main.buildSource=nix" "-X main.buildSource=nix"
]; ];
}); });
} }