mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-04-05 18:40:53 +00:00
Freezes codewindow-nvim, nvim-biscuits, and nvim-surround because of breaking changes or other such nonsense
19 lines
424 B
Nix
19 lines
424 B
Nix
{
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
pins,
|
|
}: let
|
|
pin = pins.prettier-plugin-svelte;
|
|
in
|
|
buildNpmPackage (finalAttrs: {
|
|
pname = "prettier-plugin-svelte";
|
|
version = pin.version or pin.revision;
|
|
|
|
src = fetchFromGitHub {
|
|
inherit (pin.repository) owner repo;
|
|
rev = finalAttrs.version;
|
|
sha256 = pin.hash;
|
|
};
|
|
|
|
npmDepsHash = "sha256-XVyLW0XDCvZCZxu8g1fP7fRfeU3Hz81o5FCi/i4BKQw=";
|
|
})
|