From 1a1e97722b66f5501667136670ad855d5560fa47 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Sun, 1 May 2022 18:06:07 +0530 Subject: [PATCH] feat: switch nix to GNU triple --- shell.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/shell.nix b/shell.nix index 8b0a92d..e1346e0 100644 --- a/shell.nix +++ b/shell.nix @@ -3,12 +3,12 @@ mkShell { buildInputs = [ (rust-bin.selectLatestNightlyWith (toolchain: toolchain.default.override { - extensions = [ "rust-src" "rustfmt-preview" "llvm-tools-preview"]; - targets = - pkgs.lib.optionals pkgs.stdenv.isDarwin [ "aarch64-apple-darwin" ] - ++ pkgs.lib.optionals pkgs.stdenv.isLinux - [ "x86_64-unknown-linux-musl" ]; - })) + extensions = [ "rust-src" "rustfmt-preview" "llvm-tools-preview" ]; + targets = + pkgs.lib.optionals pkgs.stdenv.isDarwin [ "aarch64-apple-darwin" ] + ++ pkgs.lib.optionals pkgs.stdenv.isLinux + [ "x86_64-unknown-linux-gnu" ]; + })) xorg.libxcb python39 ];