Skip to content

Commit a5b1a93

Browse files
authored
Merge pull request #11 from paulyoung/add-fatfs-to-all
Build all packages by default
2 parents 687c706 + b0948a4 commit a5b1a93

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

flake.nix

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -87,13 +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.fatfs-example
96-
];
90+
defaultPackage = pkgs.runCommand "all" {
91+
buildInputs = pkgs.lib.attrValues packages;
9792
} ''
9893
touch $out
9994
'';

0 commit comments

Comments
 (0)