From 6097a32f4ac34cfb23979590007c4e45a7f3cd11 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Sun, 1 Dec 2024 01:26:44 +0100 Subject: [PATCH] flake: move defaultPackage. to packages..default change deprecated defaultPackage.x86_64-linux to packages.x86_64-linux.default, remove unneeded ps --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 676699906..b541fe3a0 100644 --- a/flake.nix +++ b/flake.nix @@ -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.