15 lines
177 B
Nix
15 lines
177 B
Nix
![]() |
{
|
||
|
description = "Some glue";
|
||
|
|
||
|
inputs = { };
|
||
|
|
||
|
outputs =
|
||
|
inputs:
|
||
|
let
|
||
|
glue = import ./lib { inherit inputs; };
|
||
|
in
|
||
|
{
|
||
|
__functor = _: glue;
|
||
|
};
|
||
|
}
|