12 lines
174 B
Nix
12 lines
174 B
Nix
{
|
|
outputs =
|
|
{ self }:
|
|
{
|
|
overlays.default = (
|
|
final: prev: {
|
|
fetchYarnDepsV2 = final.callPackage ./yarn.nix { };
|
|
}
|
|
);
|
|
};
|
|
}
|