2
0
mirror of https://github.com/m-labs/artiq.git synced 2025-01-13 20:38:56 +08:00

flake: move defaultPackage.<system> to packages.<system>.default

change deprecated defaultPackage.x86_64-linux to
packages.x86_64-linux.default,
remove unneeded ps
This commit is contained in:
Charlie Root 2024-12-01 01:26:44 +01:00 committed by Sébastien Bourdeauducq
parent 592f0a7708
commit 6097a32f4a

View File

@ -421,7 +421,7 @@
inherit qtPaths makeArtiqBoardPackage openocd-bscanspi-f;
defaultPackage.x86_64-linux = pkgs.python3.withPackages(ps: [ packages.x86_64-linux.artiq ]);
packages.x86_64-linux.default = pkgs.python3.withPackages(_: [ packages.x86_64-linux.artiq ]);
# Main development shell with everything you need to develop ARTIQ on Linux.
# The current copy of the ARTIQ sources is added to PYTHONPATH so changes can be tested instantly.