From 002951b3085d8e018f36cdeef7c8bfc477c0a382 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 5 Dec 2024 13:50:49 +0100 Subject: [PATCH] generic/rust: add a few more common *-sys libraries --- generic/rust/shell.nix | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/generic/rust/shell.nix b/generic/rust/shell.nix index 3b8abfa..2952318 100644 --- a/generic/rust/shell.nix +++ b/generic/rust/shell.nix @@ -21,9 +21,16 @@ # Commonly used libraries , pkg-config +, bzip2 +, curl +, libgit2 +, libssh2 +, lz4 , openssl -, zstd +, sqlite , systemdLibs +, zlib +, zstd }: mkShell { packages = [ @@ -37,9 +44,16 @@ mkShell { ]; buildInputs = [ + bzip2 + curl + libgit2 + libssh2 + lz4 openssl - zstd + sqlite systemdLibs + zlib + zstd ]; env = {