fix(flake): build the root package, not "foobar"
This commit is contained in:
parent
1983167252
commit
3fd2674cb9
|
@ -65,19 +65,16 @@
|
|||
overlays = [ (import inputs.rust-overlay) ];
|
||||
};
|
||||
|
||||
packages.default = self'.packages.example;
|
||||
packages.default = (rustPackage "");
|
||||
devShells.default = pkgs.mkShell {
|
||||
shellHook = ''
|
||||
export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc}
|
||||
'';
|
||||
buildInputs = runtimeDeps;
|
||||
nativeBuildInputs = buildDeps ++ devDeps ++ [ (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)) ];
|
||||
nativeBuildInputs =
|
||||
buildDeps ++ devDeps ++ [ (pkgs.rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)) ];
|
||||
};
|
||||
|
||||
packages.example = (rustPackage "foobar");
|
||||
packages.example-base = (rustPackage "");
|
||||
|
||||
|
||||
treefmt = {
|
||||
projectRootFile = "./flake.nix";
|
||||
programs = {
|
||||
|
|
Loading…
Reference in a new issue