Merge pull request #235244 from figsoda/clap

This commit is contained in:
figsoda 2023-06-02 09:10:10 -04:00 committed by GitHub
commit ea3f0adc0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 5 deletions

View File

@ -749,9 +749,9 @@ dependencies = [
[[package]]
name = "h2"
version = "0.3.16"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5be7b54589b581f624f566bf5d8eb2bab1db736c51528720b6bd36b96b55924d"
checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
dependencies = [
"bytes",
"fnv",
@ -1086,7 +1086,7 @@ dependencies = [
[[package]]
name = "maple"
version = "0.1.43"
version = "0.1.44"
dependencies = [
"built",
"chrono",

View File

@ -7,16 +7,17 @@
, stdenv
, darwin
, vimUtils
, nix-update-script
}:
let
version = "0.43";
version = "0.44";
src = fetchFromGitHub {
owner = "liuchengxu";
repo = "vim-clap";
rev = "v${version}";
hash = "sha256-UHsDSah8Fn67w11s/lwL76qbGPqXhz6tYlBBuiqTNXs=";
hash = "sha256-3kPRntl5tHsITrEJaRRcidowcyMpXDTVV5jFN/GV8Sk=";
};
meta = with lib; {
@ -62,5 +63,8 @@ vimUtils.buildVimPluginFrom2Nix {
passthru = {
inherit maple;
updateScript = nix-update-script {
attrPath = "vimPlugins.vim-clap.maple";
};
};
}