mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 16:43:58 +00:00
Merge master into staging-next
This commit is contained in:
commit
63300a1942
@ -67,7 +67,7 @@ in
|
||||
environment.systemPackages = [ cfg.package ];
|
||||
|
||||
environment.shellInit = ''
|
||||
test -e ${cfg.package}/nix-support/setup-hook && source ${cfg.package}/nix-support/setup-hook
|
||||
test -e ${cfg.package}/nix-support/setup-hook && . ${cfg.package}/nix-support/setup-hook
|
||||
'';
|
||||
|
||||
};
|
||||
|
@ -2898,6 +2898,18 @@ final: prev:
|
||||
meta.homepage = "https://github.com/chrisbra/csv.vim/";
|
||||
};
|
||||
|
||||
csvview-nvim = buildVimPlugin {
|
||||
pname = "csvview.nvim";
|
||||
version = "2024-11-18";
|
||||
src = fetchFromGitHub {
|
||||
owner = "hat0uma";
|
||||
repo = "csvview.nvim";
|
||||
rev = "63b6585fc22bba2060e6dd4600bd2dd0b77dd446";
|
||||
sha256 = "0615vjdiwij5j6qxa5hfvylq9swp0z6lm5xc38yk6yxhjrkcdvyg";
|
||||
};
|
||||
meta.homepage = "https://github.com/hat0uma/csvview.nvim/";
|
||||
};
|
||||
|
||||
ctrlp-cmatcher = buildVimPlugin {
|
||||
pname = "ctrlp-cmatcher";
|
||||
version = "2015-10-15";
|
||||
@ -3572,6 +3584,18 @@ final: prev:
|
||||
meta.homepage = "https://github.com/NTBBloodbath/doom-one.nvim/";
|
||||
};
|
||||
|
||||
dotnet-nvim = buildVimPlugin {
|
||||
pname = "dotnet.nvim";
|
||||
version = "2024-10-21";
|
||||
src = fetchFromGitHub {
|
||||
owner = "MoaidHathot";
|
||||
repo = "dotnet.nvim";
|
||||
rev = "f5c52f9f52a3d8ca8dff6916c2228fb41a075274";
|
||||
sha256 = "1ysqh2aj3iy2q0cl7i642c03jb7cakqhgbqslcfd7dfvibidd2a2";
|
||||
};
|
||||
meta.homepage = "https://github.com/MoaidHathot/dotnet.nvim/";
|
||||
};
|
||||
|
||||
dracula-nvim = buildVimPlugin {
|
||||
pname = "dracula.nvim";
|
||||
version = "2024-11-11";
|
||||
@ -8766,6 +8790,18 @@ final: prev:
|
||||
meta.homepage = "https://github.com/leoluz/nvim-dap-go/";
|
||||
};
|
||||
|
||||
nvim-dap-lldb = buildVimPlugin {
|
||||
pname = "nvim-dap-lldb";
|
||||
version = "2024-06-09";
|
||||
src = fetchFromGitHub {
|
||||
owner = "julianolf";
|
||||
repo = "nvim-dap-lldb";
|
||||
rev = "81273514fdb5107b79090364b57a3ff5570bea21";
|
||||
sha256 = "18ds6kkrip0m2zanmzfqcr31qnw1whara1mvsnmx30z6iwgdp92w";
|
||||
};
|
||||
meta.homepage = "https://github.com/julianolf/nvim-dap-lldb/";
|
||||
};
|
||||
|
||||
nvim-dap-python = buildVimPlugin {
|
||||
pname = "nvim-dap-python";
|
||||
version = "2024-10-24";
|
||||
|
@ -884,6 +884,13 @@ in
|
||||
'';
|
||||
});
|
||||
|
||||
dotnet-nvim = super.dotnet-nvim.overrideAttrs {
|
||||
dependencies = with self; [
|
||||
telescope-nvim
|
||||
plenary-nvim
|
||||
];
|
||||
};
|
||||
|
||||
efmls-configs-nvim = super.efmls-configs-nvim.overrideAttrs {
|
||||
dependencies = [ self.nvim-lspconfig ];
|
||||
};
|
||||
@ -1853,6 +1860,10 @@ in
|
||||
dependencies = [ self.nvim-fzf ];
|
||||
};
|
||||
|
||||
nvim-dap-lldb = super.nvim-dap-lldb.overrideAttrs {
|
||||
dependencies = [ self.nvim-dap ];
|
||||
};
|
||||
|
||||
nvim-dap-python = super.nvim-dap-python.overrideAttrs {
|
||||
dependencies = [ self.nvim-dap ];
|
||||
nvimRequireCheck = "dap-python";
|
||||
|
@ -240,6 +240,7 @@ https://github.com/saecki/crates.nvim/,,
|
||||
https://github.com/godlygeek/csapprox/,,
|
||||
https://github.com/Decodetalkers/csharpls-extended-lsp.nvim/,HEAD,
|
||||
https://github.com/chrisbra/csv.vim/,,
|
||||
https://github.com/hat0uma/csvview.nvim/,HEAD,
|
||||
https://github.com/JazzCore/ctrlp-cmatcher/,,
|
||||
https://github.com/FelikZ/ctrlp-py-matcher/,,
|
||||
https://github.com/amiorin/ctrlp-z/,,
|
||||
@ -296,6 +297,7 @@ https://github.com/direnv/direnv.vim/,,
|
||||
https://github.com/chipsenkbeil/distant.nvim/,HEAD,
|
||||
https://github.com/doki-theme/doki-theme-vim/,,
|
||||
https://github.com/NTBBloodbath/doom-one.nvim/,,
|
||||
https://github.com/MoaidHathot/dotnet.nvim/,HEAD,
|
||||
https://github.com/dracula/vim/,,dracula-vim
|
||||
https://github.com/Mofiqul/dracula.nvim/,HEAD,
|
||||
https://github.com/stevearc/dressing.nvim/,,
|
||||
@ -728,6 +730,7 @@ https://github.com/andythigpen/nvim-coverage/,HEAD,
|
||||
https://github.com/yamatsum/nvim-cursorline/,,
|
||||
https://github.com/mfussenegger/nvim-dap/,,
|
||||
https://github.com/leoluz/nvim-dap-go/,HEAD,
|
||||
https://github.com/julianolf/nvim-dap-lldb/,HEAD,
|
||||
https://github.com/mfussenegger/nvim-dap-python/,HEAD,
|
||||
https://github.com/rinx/nvim-dap-rego/,HEAD,
|
||||
https://github.com/jonboh/nvim-dap-rr/,HEAD,
|
||||
|
@ -22,14 +22,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "databricks-sdk";
|
||||
version = "0.35.0";
|
||||
version = "0.38.0";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "databricks";
|
||||
repo = "databricks-sdk-py";
|
||||
rev = "refs/tags/v${version}";
|
||||
hash = "sha256-CEv/+3E7KWV9LXzFPvDQIL1v8iFgbsS3/cTS/4obWas=";
|
||||
hash = "sha256-g00NRo0FSHujN2mCLZCc1hKGsBFiN7ztEneUMziuQpk=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
|
@ -7,11 +7,11 @@
|
||||
}:
|
||||
mkKdeDerivation rec {
|
||||
pname = "kirigami-addons";
|
||||
version = "1.5.0";
|
||||
version = "1.6.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/kirigami-addons/kirigami-addons-${version}.tar.xz";
|
||||
hash = "sha256-+d/RkQIrYz6jNI+Ecw1xWKFZ3+SWaNugqem9Z4rETlQ=";
|
||||
hash = "sha256-N22ub8WsrH0JBc6f7zIRvgcFxuLfUruA394eqiD+G/o=";
|
||||
};
|
||||
|
||||
extraBuildInputs = [ qtdeclarative ];
|
||||
|
Loading…
Reference in New Issue
Block a user