From 4520d606527ee6189f8d71629da1d3456a9e6734 Mon Sep 17 00:00:00 2001 From: Astro Date: Thu, 14 Jan 2021 16:37:39 +0100 Subject: [PATCH] shell.nix: add rustc, pkg-config --- shell.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 5e7b55d..2a12c93 100644 --- a/shell.nix +++ b/shell.nix @@ -7,7 +7,9 @@ in pkgs.stdenv.mkDerivation { name = "env"; buildInputs = - [ pkgs.rustPlatform.rust.cargo ] ++ + with pkgs; + with rustPlatform.rust; + [ rustc cargo pkg-config ] ++ default.ticker-update.buildInputs ++ default.ticker-serve.buildInputs;