This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
{
|
||||
buildDotnetModule,
|
||||
src,
|
||||
version,
|
||||
...
|
||||
}:
|
||||
buildDotnetModule rec {
|
||||
pname = "AffinityPluginLoader";
|
||||
|
||||
inherit version src;
|
||||
|
||||
projectFile = "AffinityPluginLoader.sln";
|
||||
|
||||
patches = [ ./no-login.patch ];
|
||||
|
||||
nugetDeps = ./deps.json;
|
||||
|
||||
postInstall = ''
|
||||
pushd $out/lib/${pname}
|
||||
rm *.pdb
|
||||
rm *.config
|
||||
|
||||
mkdir -p ./apl/plugins
|
||||
mv ./WineFix.dll ./apl/plugins
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user