diff options
-rw-r--r-- | devShells/c.nix | 28 | ||||
-rw-r--r-- | devShells/default.nix | 2 |
2 files changed, 19 insertions, 11 deletions
diff --git a/devShells/c.nix b/devShells/c.nix index e5ca0a6..5798129 100644 --- a/devShells/c.nix +++ b/devShells/c.nix @@ -45,17 +45,23 @@ pkgs.mkShell { SDL2 libffi.dev - # Qt6 - qt6.qttools - qt6.qtbase - qt6.qttranslations - qt6.qtserialport - qt6.qtwebsockets - qt6.qtcharts - qt6.qtsvg - qt6.qtnetworkauth - qt6.qtwayland - qt6.wrapQtAppsHook + # Qt + #qt6.qttools + #qt6.qtbase + #qt6.qttranslations + #qt6.qtserialport + #qt6.qtwebsockets + #qt6.qtcharts + #qt6.qtsvg + #qt6.qtnetworkauth + #qt6.qtwayland + #qt6.wrapQtAppsHook + libsForQt5.qtbase + libsForQt5.qttranslations + libsForQt5.qtserialport + libsForQt5.qtwebsockets + libsForQt5.qtcharts + libsForQt5.qtwayland ]; meta.platforms = pkgs.lib.platforms.linux; } diff --git a/devShells/default.nix b/devShells/default.nix index 882f828..d09fa70 100644 --- a/devShells/default.nix +++ b/devShells/default.nix @@ -1,4 +1,6 @@ pkgs: rec { c = import ./c.nix pkgs; + musl = import ./c.nix pkgs.pkgsMusl; + #llvm = import ./c.nix pkgs.pkgsLLVM; apo = import ./apo.nix pkgs c; } |