aboutsummaryrefslogtreecommitdiff
path: root/devShells
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2022-08-19 10:43:58 +0200
committerKarel Kočí <cynerd@email.cz>2022-08-19 10:43:58 +0200
commit31105755a9b8a1861836ee9f48ce4a9178f95c1a (patch)
tree67dcf05147f1670307fcde0cba5287f5c7c2bbdc /devShells
parentf15742b86df0be0fa974af5a22265781ba56e675 (diff)
downloadnixos-personal-31105755a9b8a1861836ee9f48ce4a9178f95c1a.tar.gz
nixos-personal-31105755a9b8a1861836ee9f48ce4a9178f95c1a.tar.bz2
nixos-personal-31105755a9b8a1861836ee9f48ce4a9178f95c1a.zip
devShells/c: update clang-tools to 14 and add Python for shvtreec
Diffstat (limited to 'devShells')
-rw-r--r--devShells/c.nix6
1 files changed, 5 insertions, 1 deletions
diff --git a/devShells/c.nix b/devShells/c.nix
index 5d4278e..d6d738b 100644
--- a/devShells/c.nix
+++ b/devShells/c.nix
@@ -5,7 +5,7 @@ let
in pkgs.mkShell {
packages = (with pkgs; [
- clang-tools ctags
+ clang-tools_14 ctags
gcc gdb pkg-config
meson ninja bear
@@ -21,6 +21,10 @@ in pkgs.mkShell {
# LVGL
SDL2 libffi.dev
+
+ (python3.withPackages (pypkgs: with pypkgs; [
+ schema jinja2 ruamel-yaml
+ ]))
]);
inputsFrom = with pkgs; [ default ];
meta.platforms = nixpkgs.lib.platforms.linux;