Skip to content

Commit b0948a4

Browse files
authored
Build all packages by default
1 parent b8b3f56 commit b0948a4

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

flake.nix

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,8 @@
8787
in
8888
rec {
8989
# `nix build`
90-
defaultPackage = packages.all;
91-
92-
packages.all = pkgs.runCommand "all" {
93-
buildInputs = [
94-
packages.icfs
95-
packages.icfs-fatfs
96-
packages.fatfs-example
97-
];
90+
defaultPackage = pkgs.runCommand "all" {
91+
buildInputs = pkgs.lib.attrValues packages;
9892
} ''
9993
touch $out
10094
'';

0 commit comments

Comments
 (0)