mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 10:45:16 -07:00
build(nix): fix markdown parser #24225
This commit is contained in:
parent
54807231c0
commit
2031812348
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user