commit 2031812348e79e3d854d444b53e69340ab42e5dd parent 54807231c03495d6a322885d3ae7061e47cac490 Author: figsoda <figsoda@pm.me> Date: Sun, 2 Jul 2023 00:09:30 -0400 build(nix): fix markdown parser #24225 Diffstat:
| M | contrib/flake.nix | | | 9 | +++++++++ |
1 file changed, 9 insertions(+), 0 deletions(-)
diff --git a/contrib/flake.nix b/contrib/flake.nix @@ -46,6 +46,15 @@ }; })) (mapAttrs (const final.fetchurl)) + (self: self // { + markdown = final.stdenv.mkDerivation { + inherit (self.markdown) name; + src = self.markdown; + installPhase = '' + mv tree-sitter-markdown $out + ''; + }; + }) ]; }).overrideAttrs (oa: rec { version = self.shortRev or "dirty";