From 69ff0f2267445cd88ad7128b9384c413a849d185 Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Mon, 9 Oct 2023 19:05:37 +0200 Subject: [PATCH] Add nix dependencies --- flake.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index 4458572..a4e1072 100644 --- a/flake.nix +++ b/flake.nix @@ -7,7 +7,7 @@ outputs = { self, nixpkgs, rust-overlay, }: let system = "x86_64-linux"; - rustVersion = "1.62.0"; + rustVersion = "1.73.0"; rust = pkgs.rust-bin.stable.${rustVersion}.default.override { extensions = [ "rust-src" # for rust-analyzer @@ -19,7 +19,8 @@ }; in { devShells.${system}.default = pkgs.mkShell { - buildInputs = [ rust ] ++ (with pkgs; [ rust-analyzer pkg-config ]); + buildInputs = [ rust ] + ++ (with pkgs; [ rust-analyzer pkg-config pipewire ]); RUST_BACKTRACE = 1; }; };