14 lines
200 B
Nix
14 lines
200 B
Nix
{ inputs, ... }:
|
|
{
|
|
perSystem =
|
|
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
packages.apl-combined = pkgs.callPackage ./apl-combined.nix {
|
|
src = inputs.plugin-loader-src;
|
|
};
|
|
};
|
|
}
|