13 lines
278 B
Nix
Executable File
13 lines
278 B
Nix
Executable File
{ inputs, ... }:
|
|
{
|
|
mjallen-lib = {
|
|
module = import ./module { inherit inputs; };
|
|
file = import ./file { inherit inputs; };
|
|
inherit (inputs.nixpkgs) lib;
|
|
versioning = import ./versioning {
|
|
inherit (inputs.nixpkgs) lib;
|
|
inherit inputs;
|
|
};
|
|
};
|
|
}
|