You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Is there a way to add extraPkgs while using flakes? I'm trying to overrideAttrs, but that's not working with buildFHSUserEnv:
{inputs.nix-environments.url="github:nix-community/nix-environments";outputs={self,nixpkgs,nix-environments}: let# Replace this string with your actual system, e.g. "x86_64-linux"system="x86_64-linux";in{devShell.${system}=letpkgs=importnixpkgs{inheritsystem;};innix-environments.devShells.${system}.arduino.overrideAttrs(old: {targetPkgs=old.targetPkgs++[pkgs.micronucleus];});};}
The text was updated successfully, but these errors were encountered:
I actually copied and modified .nix files for arduino-ide and arduino-cli to allow overriding extraPkgs, as I needed python with pyserial, which none of those could use both with mkShell and fhs env.
Hi,
Is there a way to add extraPkgs while using flakes? I'm trying to overrideAttrs, but that's not working with
buildFHSUserEnv
:The text was updated successfully, but these errors were encountered: