This commit is contained in:
2026-09-01 10:45:21 -04:00
commit ac32649783
51 changed files with 4837 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{
callPackage,
symlinkJoin,
src,
...
}:
let
version = "unstable";
apl = callPackage ./apl.nix {
inherit version src;
};
bootstrap = callPackage ./bootstrap.nix {
inherit version src;
};
in
symlinkJoin {
pname = "apl-combined";
inherit version;
paths = [
apl
bootstrap
];
postBuild = ''
mv $out/lib/AffinityPluginLoader/* $out
rm -rf $out/lib
'';
}