copy instead of link the background files

This commit is contained in:
Charlotte 🦝 Delenk 2024-11-11 15:23:44 +01:00
parent cae52377df
commit 20a5f5670b
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@ stdenvNoCC.mkDerivation {
installPhase = ''
mkdir $out
for f in $nsfwBgs; do
ln -svf $src/$f $out/$f
cp $src/$f $out/$f
done
'';

View file

@ -15,7 +15,7 @@ stdenvNoCC.mkDerivation {
installPhase = ''
mkdir $out
for f in $sfwBgs; do
ln -svf $src/$f $out/$f
cp $src/$f $out/$f
done
'';