update makefile

This commit is contained in:
Jonas Heinrich 2022-12-30 19:14:17 +01:00
parent 3c5af220e7
commit 68f86e0586
3 changed files with 27 additions and 5 deletions

View file

@ -6,11 +6,15 @@
# Remove first run wizard and password policy check from Nextcloud
# package
nextcloud25 = super.nextcloud25.overrideAttrs (oldAttrs: rec {
patches = [];
src = ./server;
installPhase = oldAttrs.installPhase + ''
rm -r $out/apps/firstrunwizard
rm -r $out/apps/password_policy
mkdir -p $out/
cp -R . $out/
#rm -r $out/apps/firstrunwizard
#rm -r $out/apps/password_policy
'';
dontBuild = true;
});
})
];