aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2024-05-06 12:42:37 +0200
committerKarel Kočí <cynerd@email.cz>2024-05-06 12:42:37 +0200
commit304b10c07f769bbc31997d2ac7edb95c632ba823 (patch)
tree6b84574593ce50f49ddaa170a444f8b134825eda
parent681b76f6044978d9fca68202f6f85d3c4f5a8477 (diff)
downloadnixos-personal-304b10c07f769bbc31997d2ac7edb95c632ba823.tar.gz
nixos-personal-304b10c07f769bbc31997d2ac7edb95c632ba823.tar.bz2
nixos-personal-304b10c07f769bbc31997d2ac7edb95c632ba823.zip
devShells/c: add autotools and Qt5
-rw-r--r--devShells/c.nix12
1 files changed, 12 insertions, 0 deletions
diff --git a/devShells/c.nix b/devShells/c.nix
index c28eafb..f1b98a3 100644
--- a/devShells/c.nix
+++ b/devShells/c.nix
@@ -7,6 +7,10 @@ pkgs.mkShell {
gdb
pkg-config
+ autoconf
+ automake
+ libtool
+
gnumake
bear
meson
@@ -40,6 +44,14 @@ pkgs.mkShell {
# LVGL
SDL2
libffi.dev
+
+ # Qt
+ libsForQt5.qtbase
+ libsForQt5.qttranslations
+ libsForQt5.qtserialport
+ libsForQt5.qtwebsockets
+ libsForQt5.qtcharts
+ libsForQt5.qtwayland
];
meta.platforms = pkgs.lib.platforms.linux;
}