aboutsummaryrefslogtreecommitdiff
path: root/devShells
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2024-09-26 12:31:27 +0200
committerKarel Kočí <cynerd@email.cz>2024-09-26 12:31:27 +0200
commitc456c78de2557b59e3fd290f22332faba910b846 (patch)
treef4b1bc8f601c80d8bc17199e023d9d4d06a55e38 /devShells
parent9c7060223cf1e9f78f4b39954dcd82e0a6749b0b (diff)
downloadnixos-personal-c456c78de2557b59e3fd290f22332faba910b846.tar.gz
nixos-personal-c456c78de2557b59e3fd290f22332faba910b846.tar.bz2
nixos-personal-c456c78de2557b59e3fd290f22332faba910b846.zip
devShells: add musl and Qt5 for now
Diffstat (limited to 'devShells')
-rw-r--r--devShells/c.nix28
-rw-r--r--devShells/default.nix2
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;
}