From e4569399a758a6aac605a6f861f14aa402a982c1 Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Wed, 31 Aug 2022 11:23:22 +1000 Subject: [PATCH] taplo-lsp: remove unnecessary file top-level was replaced by `taplo` in e517b841291e9cb28bf4c0f729a60dc88f75c385 --- pkgs/development/tools/taplo-lsp/default.nix | 28 -------------------- 1 file changed, 28 deletions(-) delete mode 100644 pkgs/development/tools/taplo-lsp/default.nix diff --git a/pkgs/development/tools/taplo-lsp/default.nix b/pkgs/development/tools/taplo-lsp/default.nix deleted file mode 100644 index 07fcfaec9334..000000000000 --- a/pkgs/development/tools/taplo-lsp/default.nix +++ /dev/null @@ -1,28 +0,0 @@ -{ fetchCrate, lib, openssl, pkg-config, rustPlatform, stdenv, Security }: - -rustPlatform.buildRustPackage rec { - pname = "taplo-lsp"; - version = "0.2.6"; - - src = fetchCrate { - inherit pname version; - sha256 = "sha256-jd4l9iTCeHnUa/GC13paD3zDiCZBk9VgEbCDsOs/Xq4="; - }; - - cargoSha256 = "sha256-zQ303JFqnbulkWL4t5+fRWijaY9zd9tLKvrvdUEvKpY="; - - # excludes test_tcp since it fails - cargoTestFlags = [ "test_stdio" ]; - - nativeBuildInputs = lib.optional stdenv.isLinux pkg-config; - - buildInputs = lib.optional stdenv.isLinux openssl - ++ lib.optional stdenv.isDarwin Security; - - meta = with lib; { - description = "A TOML toolkit written in Rust"; - homepage = "https://taplo.tamasfe.dev"; - license = licenses.mit; - maintainers = with maintainers; [ figsoda ]; - }; -}