From 6d6a709a50dbf40654a6aa53b5fa679e167e27b4 Mon Sep 17 00:00:00 2001 From: figsoda Date: Sat, 27 May 2023 15:13:55 -0400 Subject: [PATCH 1/2] mdbook-katex: remove unused dependencies --- pkgs/tools/text/mdbook-katex/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pkgs/tools/text/mdbook-katex/default.nix b/pkgs/tools/text/mdbook-katex/default.nix index c5cf1db068f7..b465dd5560b3 100644 --- a/pkgs/tools/text/mdbook-katex/default.nix +++ b/pkgs/tools/text/mdbook-katex/default.nix @@ -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; { From 7997e72cd9e80ba973cb8350451e0cfd0fe20d8f Mon Sep 17 00:00:00 2001 From: figsoda Date: Sat, 27 May 2023 15:16:25 -0400 Subject: [PATCH 2/2] mdbook-katex: 0.5.0 -> 0.5.1 Diff: https://diff.rs/mdbook-katex/0.5.0/0.5.1 --- pkgs/tools/text/mdbook-katex/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/tools/text/mdbook-katex/default.nix b/pkgs/tools/text/mdbook-katex/default.nix index b465dd5560b3..a1314d2ccd13 100644 --- a/pkgs/tools/text/mdbook-katex/default.nix +++ b/pkgs/tools/text/mdbook-katex/default.nix @@ -2,14 +2,14 @@ rustPlatform.buildRustPackage rec { pname = "mdbook-katex"; - version = "0.5.0"; + version = "0.5.1"; src = fetchCrate { inherit pname version; - hash = "sha256-6gZTJrjr3cO7f6XBrQrBKe62UsnPxGo1eXX/+ICdJfk="; + hash = "sha256-RDNZ6+d+UbiQ/Eb2+YbhPyGVcM8079UFsnNvch/1oAs="; }; - cargoHash = "sha256-KHC37LNnc789anxJBADgj97tw5TwR/5ksxP3X/9pHlo="; + cargoHash = "sha256-An2mQ4kWGF3qk2v9VeQh700n7n/+3ShPqMfCnZmiIuc="; buildInputs = lib.optionals stdenv.isDarwin [ CoreServices ];