shell.nix: add rustc, pkg-config

This commit is contained in:
Astro 2021-01-14 16:37:39 +01:00
parent b0bb818faf
commit 4520d60652
1 changed files with 3 additions and 1 deletions

View File

@ -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;