Inherit all packages from lib into flake outputs
Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
This commit is contained in:
parent
45adb5ba20
commit
a154eccfed
2 changed files with 11 additions and 2 deletions
|
|
@ -35,11 +35,18 @@
|
|||
}
|
||||
);
|
||||
|
||||
lib = callPackage ./lib {};
|
||||
lib = import ./lib {
|
||||
inherit
|
||||
inputs
|
||||
callPackage
|
||||
;
|
||||
};
|
||||
in
|
||||
{
|
||||
inherit lib;
|
||||
|
||||
packages = lib.packages;
|
||||
|
||||
devShells.default = pkgs.mkShell {
|
||||
nativeBuildInputs = [
|
||||
pkgs.rust-bin.nightly.latest.default
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue