From b95c3c8afede8966cb8494e059faf91aae261be8 Mon Sep 17 00:00:00 2001 From: Jann Marc Villablanca <31008330+jfvillablanca@users.noreply.github.com> Date: Fri, 22 Dec 2023 12:32:05 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=90=9B=20fix:=20add=20openssl=20runti?= =?UTF-8?q?me=20dependencies=20(#451)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - OpenSSL dependencies are usually readily available for non-Nix distros but not for NixOS users. --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 6c30713..749f3af 100644 --- a/flake.nix +++ b/flake.nix @@ -41,6 +41,8 @@ rustPackages.clippy rustc yamllint + openssl + pkg-config ]; RUST_SRC_PATH = rustPlatform.rustLibSrc; }; From 12843414f805182d468c197f7816a9ca181ea4b1 Mon Sep 17 00:00:00 2001 From: Jann Marc Villablanca <31008330+jfvillablanca@users.noreply.github.com> Date: Sat, 23 Dec 2023 14:45:30 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=A7=91=E2=80=8D=F0=9F=92=BB=20feat:?= =?UTF-8?q?=20add=20cargo-watch=20to=20nix=20dev=20shell=20(#452)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Contributors using NixOS won't need to install cargo-watch imperatively via `cargo` since it is already packaged up in `nixpkgs` --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 749f3af..c6e49cf 100644 --- a/flake.nix +++ b/flake.nix @@ -39,6 +39,7 @@ nodePackages_latest.stylelint redis rustPackages.clippy + cargo-watch rustc yamllint openssl