Skip to content

Commit

Permalink
update taplo
Browse files Browse the repository at this point in the history
  • Loading branch information
cdmistman committed Jun 28, 2024
1 parent 9db943c commit 85d4246
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/modules/replit/default.nix
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{ lib, pkgs, ... }:
{ pkgs, ... }:

let
# use changes from https://github.com/tamasfe/taplo/pull/510
Expand All @@ -15,17 +15,17 @@ let
# a custom bin that wraps taplo-lsp crate that *only* provides lsp for .replit
# files. this should reduce the amount of consumed memory by a good amount.
# - use the above custom bin
taplo = pkgs.rustPlatform.buildRustPackage rec {
taplo = pkgs.rustPlatform.buildRustPackage {
pname = "taplo";
version = "0.patched";
src = pkgs.fetchFromGitHub {
owner = "cdmistman";
owner = "tamasfe";
repo = "taplo";
rev = "22eff1f7775e48eee8b50518c67f992b4595ab61";
hash = "sha256-63fm8pH03TJd4QBuhIxtttoEAaBnc9TuHGKCMK4YGP0=";
rev = "acec15f897cb57fc33999779f875db58fd89945d";
hash = "sha256-NjjRDvmZwYAcn0W5qnxS1Qr8DaOE93XNr6q57uvB2LE=";
};

cargoHash = "sha256-4OSCN2zCrlBHihZn7TCNZp4mCREpvrpKsfMSNP95GNc=";
cargoHash = "sha256-6vT1/3gV0A6ActfRrkmtxhv8+Wq+EZ4q6Pgvb+CdJDs=";
buildFeatures = [ "lsp" ];
};

Expand Down

0 comments on commit 85d4246

Please sign in to comment.