Add keymap-drawer to shell.nix

This commit is contained in:
2024-12-07 00:05:56 +01:00
parent be5320cc44
commit 657cc19ea4
2 changed files with 54 additions and 13 deletions

View File

@@ -1,13 +1,12 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
packages = with pkgs; [
kicad
nodejs
freecad-wayland
blender
python3Packages.pip
# python312Packages.west
# cmake
# ninja
];
}
{pkgs ? import <nixpkgs> {}}: let
keymap-drawer =
pkgs.python3Packages.callPackage ./draw {};
in
pkgs.mkShell {
packages = with pkgs; [
kicad
nodejs
freecad-wayland
keymap-drawer
];
}