Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 fetchFromGitea, 4 vimUtils, 5 nix-update-script, 6}: 7vimUtils.buildVimPlugin { 8 pname = "jsonfly.nvim"; 9 version = "0-unstable-2025-06-07"; 10 11 src = fetchFromGitea { 12 domain = "git.myzel394.app"; 13 owner = "Myzel394"; 14 repo = "jsonfly.nvim"; 15 rev = "db4394d856059d99d82ea2c75d033721e9dcb1fc"; 16 hash = "sha256-PmYm+vZ0XONoHUo08haBozbXRpN+/LAlr6Fyg7anTNw="; 17 }; 18 19 passthru.updateScript = nix-update-script { }; 20 21 meta = { 22 description = "Search blazingly fast for JSON / XML / YAML keys via Telescope"; 23 homepage = "https://git.myzel394.app/Myzel394/jsonfly.nvim"; 24 platforms = lib.platforms.all; 25 maintainers = with lib.maintainers; [ myzel394 ]; 26 }; 27}