Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
29 lines
702 B
Nix
29 lines
702 B
Nix
{
|
|
lib,
|
|
vimUtils,
|
|
fetchFromGitLab,
|
|
nix-update-script,
|
|
}:
|
|
vimUtils.buildVimPlugin {
|
|
pname = "nvim-julia-autotest";
|
|
version = "0-unstable-2022-10-31";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "usmcamp0811";
|
|
repo = "nvim-julia-autotest";
|
|
rev = "b74e2f9c961e604cb56cc23f87188348bfa0f33f";
|
|
hash = "sha256-IaNsbBe5q7PB9Q/N/Z9nEnP6jlkQ6+xlkC0TCFnJpkk=";
|
|
};
|
|
|
|
passthru.updateScript = nix-update-script {
|
|
extraArgs = [ "--version=branch" ];
|
|
};
|
|
|
|
meta = {
|
|
description = "Automatically run Julia tests when you save runtest.jl file";
|
|
homepage = "https://gitlab.com/usmcamp0811/nvim-julia-autotest";
|
|
license = lib.licenses.gpl3;
|
|
platforms = lib.platforms.all;
|
|
};
|
|
}
|