mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
build(nix): fix markdown parser #24225
This commit is contained in:
@ -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";
|
||||
|
Reference in New Issue
Block a user