Merge pull request #207346 from figsoda/highlight-assertions

highlight-assertions: init at unstable-2022-11-24

authored by figsoda and committed by GitHub 26d95bda b0632a2d

+27
+25
pkgs/development/tools/misc/highlight-assertions/default.nix
··· 1 + { lib, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "highlight-assertions"; 5 + version = "unstable-2022-11-24"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "thehamsta"; 9 + repo = pname; 10 + rev = "c738a51513285ded4fc16d68afcdb77761543f92"; 11 + sha256 = "sha256-vYXr0xFwRUwSEP++834A/4M1QB14Wx+qWwB9PUtn3uA="; 12 + }; 13 + 14 + cargoSha256 = "sha256-sezjd7tmVVDoRsrsTK2zKjHmrBcAQDHyHd/dR1q1za0="; 15 + 16 + # requires nightly features 17 + RUSTC_BOOTSTRAP = 1; 18 + 19 + meta = with lib; { 20 + description = "A tool for unit testing tree sitter highlights for nvim-treesitter"; 21 + homepage = "https://github.com/thehamsta/highlight-assertions"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ figsoda ]; 24 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 17476 17476 17477 17477 heroku = callPackage ../development/tools/heroku { }; 17478 17478 17479 + highlight-assertions = callPackage ../development/tools/misc/highlight-assertions { }; 17480 + 17479 17481 ccloud-cli = callPackage ../development/tools/ccloud-cli { }; 17480 17482 17481 17483 confluent-cli = callPackage ../development/tools/confluent-cli { };