mirror of
https://github.com/zoriya/abyss.git
synced 2025-12-06 06:36:16 +00:00
13 lines
228 B
Nix
13 lines
228 B
Nix
{pkgs ? import <nixpkgs> {}}: let
|
|
keymap-drawer =
|
|
pkgs.python3Packages.callPackage ./draw {};
|
|
in
|
|
pkgs.mkShell {
|
|
packages = with pkgs; [
|
|
kicad
|
|
nodejs
|
|
freecad-wayland
|
|
# keymap-drawer
|
|
];
|
|
}
|