mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -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))
|
(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 {
|
}).overrideAttrs (oa: rec {
|
||||||
version = self.shortRev or "dirty";
|
version = self.shortRev or "dirty";
|
||||||
|
Loading…
Reference in New Issue
Block a user