about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPaho Lurie-Gregg <paho@paholg.com>2024-03-04 21:45:54 -0800
committerPaho Lurie-Gregg <paho@paholg.com>2024-03-05 08:54:00 -0800
commit1c85d220c969285865ac14f69d671d4b813979ec (patch)
tree624cfb4f6ef8593e4bd4e81f4c7e97c571fa3458 /pkgs/development
parent311a4be96d940a0c673e88bd5bc83ea4f005cc02 (diff)
taplo: 0.8.1 -> 0.9.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/taplo/default.nix18
1 files changed, 14 insertions, 4 deletions
diff --git a/pkgs/development/tools/taplo/default.nix b/pkgs/development/tools/taplo/default.nix
index 43026331f5c75..2f497d6eb9319 100644
--- a/pkgs/development/tools/taplo/default.nix
+++ b/pkgs/development/tools/taplo/default.nix
@@ -1,6 +1,8 @@
 { lib
 , rustPlatform
 , fetchCrate
+, pkg-config
+, openssl
 , stdenv
 , Security
 , withLsp ? true
@@ -8,17 +10,25 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "taplo";
-  version = "0.8.1";
+  version = "0.9.0";
 
   src = fetchCrate {
     inherit version;
     pname = "taplo-cli";
-    sha256 = "sha256-evNW6OA7rArj0TvOaQgktcQy0tWnel3ZL+ic78e6lOk=";
+    hash = "sha256-vvb00a6rppx9kKx+pzObT/hW/IsG6RyYFEDp9M5gvqc=";
   };
 
-  cargoSha256 = "sha256-jeLjoqEieR96mUZQmQtv7P78lmOaF18ruVhZLi/TieQ=";
+  cargoHash = "sha256-oT7U9htu7J22MqLZb+YXohlB1CVGxHGQvHJu18PeLf8=";
 
-  buildInputs = lib.optional stdenv.isDarwin Security;
+  nativeBuildInputs = [
+    pkg-config
+  ];
+
+  buildInputs = [
+    openssl
+  ] ++ lib.optionals stdenv.isDarwin [
+    Security
+  ];
 
   buildFeatures = lib.optional withLsp "lsp";