mdbook-katex: remove unused dependencies

This commit is contained in:
figsoda 2023-05-27 15:13:55 -04:00
parent 2d36610993
commit 6d6a709a50

View file

@ -1,4 +1,4 @@
{ lib, stdenv, fetchCrate, rustPlatform, openssl, CoreServices }:
{ lib, rustPlatform, fetchCrate, stdenv, CoreServices }:
rustPlatform.buildRustPackage rec {
pname = "mdbook-katex";
@ -11,9 +11,6 @@ rustPlatform.buildRustPackage rec {
cargoHash = "sha256-KHC37LNnc789anxJBADgj97tw5TwR/5ksxP3X/9pHlo=";
OPENSSL_DIR = "${lib.getDev openssl}";
OPENSSL_LIB_DIR = "${lib.getLib openssl}/lib";
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];
meta = with lib; {