flake: no default package, use rec

pull/85/head
mwojcik 2022-01-27 16:09:40 +08:00
parent 810f17c874
commit 95a1ea03da
1 changed files with 2 additions and 3 deletions

View File

@ -262,10 +262,10 @@
inherit cargo-xbuild szl;
zc706-fsbl = fsbl { board = "zc706"; };
} // allTargetCrates ;
in {
in rec {
packages.x86_64-linux = allOutputs;
hydraJobs = allOutputs;
hydraJobs = packages.x86_64-linux;
devShell.x86_64-linux = pkgs.mkShell {
name = "zynq-rs-dev-shell";
@ -280,6 +280,5 @@
llvmPackages_9.clang-unwrapped
mkbootimage ];
};
defaultPackage.x86_64-linux = allTargetCrates.zc706-szl;
};
}